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
KOrganizer
Commits
3c36fd13
Commit
3c36fd13
authored
Aug 24, 2020
by
Laurent Montel
😁
Browse files
Const'ify QString
parent
154a0144
Pipeline
#31575
passed with stage
in 37 minutes and 38 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/kontactplugin/korganizer/korganizerplugin.cpp
View file @
3c36fd13
...
...
@@ -44,7 +44,7 @@ KOrganizerPlugin::KOrganizerPlugin(KontactInterface::Core *core, const QVariantL
i18nc
(
"@action:inmenu"
,
"New Event..."
),
this
);
actionCollection
()
->
addAction
(
QStringLiteral
(
"new_event"
),
action
);
actionCollection
()
->
setDefaultShortcut
(
action
,
QKeySequence
(
Qt
::
CTRL
+
Qt
::
SHIFT
+
Qt
::
Key_E
));
QString
str
=
i18nc
(
"@info:status"
,
"Create a new event"
);
const
QString
str
=
i18nc
(
"@info:status"
,
"Create a new event"
);
action
->
setStatusTip
(
str
);
action
->
setToolTip
(
str
);
...
...
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