Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Unmaintained
KDE Pim
Commits
036cf112
Commit
036cf112
authored
Dec 17, 2014
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
const'ify
parent
0afbf543
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
korgac/alarmdockwindow.cpp
korgac/alarmdockwindow.cpp
+3
-3
No files found.
korgac/alarmdockwindow.cpp
View file @
036cf112
...
...
@@ -43,9 +43,9 @@ AlarmDockWindow::AlarmDockWindow()
{
// Read the autostart status from the config file
KConfigGroup
config
(
KGlobal
::
config
(),
"General"
);
bool
autostartSet
=
config
.
hasKey
(
"Autostart"
);
bool
autostart
=
config
.
readEntry
(
"Autostart"
,
true
);
bool
alarmsEnabled
=
config
.
readEntry
(
"Enabled"
,
true
);
const
bool
autostartSet
=
config
.
hasKey
(
"Autostart"
);
const
bool
autostart
=
config
.
readEntry
(
"Autostart"
,
true
);
const
bool
alarmsEnabled
=
config
.
readEntry
(
"Enabled"
,
true
);
mName
=
i18nc
(
"@title:window"
,
"KOrganizer Reminder Daemon"
);
setToolTipTitle
(
mName
);
...
...
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