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
5c4b134e
Commit
5c4b134e
authored
Oct 19, 2021
by
Laurent Montel
😁
Browse files
Return directly pointer here
parent
7bf2c702
Pipeline
#89823
passed with stage
in 51 minutes and 43 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
kmail/editorplugins/nonbreakingspace/nonbreakingspaceplugineditor.cpp
View file @
5c4b134e
...
...
@@ -21,8 +21,7 @@ NonBreakingSpacePluginEditor::~NonBreakingSpacePluginEditor()
MessageComposer
::
PluginEditorInterface
*
NonBreakingSpacePluginEditor
::
createInterface
(
QObject
*
parent
)
{
auto
interface
=
new
NonBreakingSpacePluginEditorInterface
(
parent
);
return
interface
;
return
new
NonBreakingSpacePluginEditorInterface
(
parent
);
}
#include
"nonbreakingspaceplugineditor.moc"
kmail/editorplugins/sharetext/sharetextplugineditor.cpp
View file @
5c4b134e
...
...
@@ -26,8 +26,7 @@ bool ShareTextPluginEditor::hasPopupMenuSupport() const
MessageComposer
::
PluginEditorInterface
*
ShareTextPluginEditor
::
createInterface
(
QObject
*
parent
)
{
auto
interface
=
new
ShareTextPluginEditorInterface
(
parent
);
return
interface
;
return
new
ShareTextPluginEditorInterface
(
parent
);
}
#include
"sharetextplugineditor.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