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
686e8a89
Commit
686e8a89
authored
Oct 18, 2021
by
Laurent Montel
😁
Browse files
const'ify
parent
a2c668e2
Pipeline
#89524
passed with stage
in 50 minutes and 18 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
kmail/plugins/expertplugin/expertplugininterface.cpp
View file @
686e8a89
...
...
@@ -22,7 +22,7 @@ void ExpertPluginInterface::createAction(KActionCollection *ac)
{
QAction
*
action
=
ac
->
action
(
QStringLiteral
(
"toggle_mimeparttree"
));
if
(
action
)
{
PimCommon
::
ActionType
type
(
action
,
PimCommon
::
ActionType
::
Message
);
const
PimCommon
::
ActionType
type
(
action
,
PimCommon
::
ActionType
::
Message
);
addActionType
(
type
);
}
else
{
qCWarning
(
KMAIL_EXPERT_PLUGIN_LOG
)
<<
"toggle_mimeparttree is not defined "
;
...
...
plugins/customtoolsplugins/translatorplugin/translatorview.h
View file @
686e8a89
...
...
@@ -26,5 +26,5 @@ private:
void
slotActivateTranslator
(
bool
state
);
void
createAction
(
KActionCollection
*
ac
);
KToggleAction
*
mAction
=
nullptr
;
PimCommon
::
TranslatorWidget
*
mTranslatorWidget
=
nullptr
;
PimCommon
::
TranslatorWidget
*
const
mTranslatorWidget
;
};
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