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
5ecb9599
Commit
5ecb9599
authored
Oct 06, 2020
by
Laurent Montel
😁
Browse files
not necessary to use QPointer here
parent
315d4ba1
Changes
1
Hide whitespace changes
Inline
Side-by-side
kmail/editorinitplugins/externalcomposer/externalcomposerplugineditor.cpp
View file @
5ecb9599
...
...
@@ -33,9 +33,8 @@ bool ExternalComposerPluginEditor::hasConfigureDialog() const
void
ExternalComposerPluginEditor
::
showConfigureDialog
(
QWidget
*
parent
)
{
QPointer
<
ExternalComposerConfigureDialog
>
dlg
=
new
ExternalComposerConfigureDialog
(
parent
);
dlg
->
exec
();
delete
dlg
;
ExternalComposerConfigureDialog
dlg
(
parent
);
dlg
.
exec
();
}
#include
"externalcomposerplugineditor.moc"
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