Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
KPimTextEdit
Commits
acb1fbf7
Commit
acb1fbf7
authored
Jan 17, 2022
by
Laurent Montel
😁
Browse files
Add missing explicit
parent
cf050841
Pipeline
#124894
passed with stage
in 2 minutes and 23 seconds
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/inserthtmldialog.cpp
View file @
acb1fbf7
...
...
@@ -23,7 +23,7 @@ namespace KPIMTextEdit
class
InsertHtmlDialogPrivate
{
public:
InsertHtmlDialogPrivate
(
InsertHtmlDialog
*
qq
)
explicit
InsertHtmlDialogPrivate
(
InsertHtmlDialog
*
qq
)
:
q
(
qq
)
{
q
->
setWindowTitle
(
i18nc
(
"@title:window"
,
"Insert HTML"
));
...
...
src/insertimagedialog.cpp
View file @
acb1fbf7
...
...
@@ -20,7 +20,7 @@ namespace KPIMTextEdit
class
InsertImageDialogPrivate
{
public:
InsertImageDialogPrivate
(
InsertImageDialog
*
qq
)
explicit
InsertImageDialogPrivate
(
InsertImageDialog
*
qq
)
:
q
(
qq
)
{
auto
vbox
=
new
QVBoxLayout
(
q
);
...
...
src/inserttablewidget.cpp
View file @
acb1fbf7
...
...
@@ -19,7 +19,7 @@ using namespace KPIMTextEdit;
class
InsertTableWidget
::
InsertTableWidgetPrivate
{
public:
InsertTableWidgetPrivate
(
InsertTableWidget
*
qq
)
explicit
InsertTableWidgetPrivate
(
InsertTableWidget
*
qq
)
:
q
(
qq
)
{
mRows
=
new
QSpinBox
;
...
...
src/tableactionmenu.cpp
View file @
acb1fbf7
...
...
@@ -23,7 +23,7 @@ namespace KPIMTextEdit
class
TableActionMenuPrivate
{
public:
TableActionMenuPrivate
(
QTextEdit
*
edit
,
TableActionMenu
*
qq
)
explicit
TableActionMenuPrivate
(
QTextEdit
*
edit
,
TableActionMenu
*
qq
)
:
textEdit
(
edit
)
,
q
(
qq
)
{
...
...
src/tablecellformatdialog.cpp
View file @
acb1fbf7
...
...
@@ -22,7 +22,7 @@ using namespace KPIMTextEdit;
class
TableCellFormatDialog
::
TableCellFormatDialogPrivate
{
public:
TableCellFormatDialogPrivate
(
TableCellFormatDialog
*
qq
)
explicit
TableCellFormatDialogPrivate
(
TableCellFormatDialog
*
qq
)
:
q
(
qq
)
{
q
->
setWindowTitle
(
i18nc
(
"@title:window"
,
"Cell Format"
));
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment