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
KMail
Commits
e84b9201
Commit
e84b9201
authored
Sep 15, 2021
by
Laurent Montel
😁
Browse files
const'ify pointer
parent
00e8cdde
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/configuredialog/configuresecuritypage.cpp
View file @
e84b9201
...
...
@@ -396,8 +396,8 @@ QString SecurityPageSMimeTab::helpAnchor() const
SecurityPageSMimeTab
::
SecurityPageSMimeTab
(
QWidget
*
parent
)
:
ConfigModuleTab
(
parent
)
,
mWidget
(
new
Ui
::
SMimeConfiguration
)
{
mWidget
=
new
Ui
::
SMimeConfiguration
;
mWidget
->
setupUi
(
this
);
// Button-group for exclusive radiobuttons
...
...
src/configuredialog/configuresecuritypage.h
View file @
e84b9201
...
...
@@ -116,7 +116,7 @@ private:
void
doLoadOther
()
override
;
private:
Ui
::
SMimeConfiguration
*
mWidget
=
nullptr
;
Ui
::
SMimeConfiguration
*
const
mWidget
;
QGpgME
::
CryptoConfig
*
mConfig
=
nullptr
;
};
...
...
Write
Preview
Markdown
is supported
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