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
KDE PIM Add-ons
Commits
e85213b1
Commit
e85213b1
authored
Mar 07, 2021
by
Laurent Montel
😁
Browse files
const'ify pointer
parent
b39155db
Pipeline
#53390
passed with stage
in 55 minutes and 34 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
plugins/messageviewerconfigureplugins/foldersettings/folderconfiguresettingsviewwidget.cpp
View file @
e85213b1
...
...
@@ -9,10 +9,10 @@
#include <QHBoxLayout>
FolderConfigureSettingsViewWidget
::
FolderConfigureSettingsViewWidget
(
QWidget
*
parent
)
:
FolderConfigureSettingsPageBase
(
parent
)
,
mCollectionViewWidget
(
new
MailCommon
::
CollectionViewWidget
(
this
))
{
QWidget
*
mainWidget
=
new
QWidget
(
this
);
auto
mainLayout
=
new
QHBoxLayout
(
mainWidget
);
mCollectionViewWidget
=
new
MailCommon
::
CollectionViewWidget
(
this
);
mCollectionViewWidget
->
setObjectName
(
QStringLiteral
(
"mCollectionTemplateWidget"
));
mainLayout
->
addWidget
(
mCollectionViewWidget
);
addMainWidget
(
mainWidget
);
...
...
plugins/messageviewerconfigureplugins/foldersettings/folderconfiguresettingsviewwidget.h
View file @
e85213b1
...
...
@@ -24,7 +24,7 @@ public:
void
save
(
Akonadi
::
Collection
&
col
);
private:
MailCommon
::
CollectionViewWidget
*
mCollectionViewWidget
=
nullptr
;
MailCommon
::
CollectionViewWidget
*
const
mCollectionViewWidget
;
};
#endif // FOLDERCONFIGURESETTINGSVIEWWIDGET_H
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