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
KAlarm
Commits
a29a4b52
Commit
a29a4b52
authored
Jan 11, 2021
by
David Jarvie
Browse files
Rename Settings 'Edit' tab to 'Defaults'.
This is to make the tab's purpose clearer to users.
parent
f6324c2a
Pipeline
#47283
passed with stage
in 18 minutes and 1 second
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Changelog
View file @
a29a4b52
KAlarm Change Log
=== Version 3.2.0 (KDE Applications 21.04) --- 11 January 2021 ===
* Remove KAlarm Akonadi resource code.
* Rename Settings 'Edit' tab to 'Defaults'.
=== Version 3.1.2 (KDE Applications 20.12.2) --- 11 January 2021 ===
* Default to using alarm names.
...
...
src/main.cpp
View file @
a29a4b52
/*
* main.cpp
* Program: kalarm
* SPDX-FileCopyrightText: 2001-202
0
David Jarvie <djarvie@kde.org>
* SPDX-FileCopyrightText: 2001-202
1
David Jarvie <djarvie@kde.org>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
...
...
src/prefdlg.cpp
View file @
a29a4b52
/*
* prefdlg.cpp - program preferences dialog
* Program: kalarm
* SPDX-FileCopyrightText: 2001-202
0
David Jarvie <djarvie@kde.org>
* SPDX-FileCopyrightText: 2001-202
1
David Jarvie <djarvie@kde.org>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
...
...
@@ -169,17 +169,17 @@ KAlarmPrefDlg::KAlarmPrefDlg()
mEmailPageItem
->
setIcon
(
QIcon
::
fromTheme
(
QStringLiteral
(
"internet-mail"
)));
addPage
(
mEmailPageItem
);
mEditPage
=
new
EditPrefTab
(
mTabScrollGroup
);
mEditPageItem
=
new
KPageWidgetItem
(
mEditPage
,
i18nc
(
"@title:tab"
,
"Defaults"
));
mEditPageItem
->
setHeader
(
i18nc
(
"@title"
,
"Default Alarm Edit Settings"
));
mEditPageItem
->
setIcon
(
QIcon
::
fromTheme
(
QStringLiteral
(
"document-properties"
)));
addPage
(
mEditPageItem
);
mViewPage
=
new
ViewPrefTab
(
mTabScrollGroup
);
mViewPageItem
=
new
KPageWidgetItem
(
mViewPage
,
i18nc
(
"@title:tab"
,
"View"
));
mViewPageItem
->
setHeader
(
i18nc
(
"@title"
,
"View Settings"
));
mViewPageItem
->
setIcon
(
QIcon
::
fromTheme
(
QStringLiteral
(
"preferences-desktop-theme"
)));
addPage
(
mViewPageItem
);
mEditPage
=
new
EditPrefTab
(
mTabScrollGroup
);
mEditPageItem
=
new
KPageWidgetItem
(
mEditPage
,
i18nc
(
"@title:tab"
,
"Edit"
));
mEditPageItem
->
setHeader
(
i18nc
(
"@title"
,
"Default Alarm Edit Settings"
));
mEditPageItem
->
setIcon
(
QIcon
::
fromTheme
(
QStringLiteral
(
"document-properties"
)));
addPage
(
mEditPageItem
);
connect
(
button
(
QDialogButtonBox
::
Ok
),
&
QAbstractButton
::
clicked
,
this
,
&
KAlarmPrefDlg
::
slotOk
);
connect
(
button
(
QDialogButtonBox
::
Cancel
),
&
QAbstractButton
::
clicked
,
this
,
&
KAlarmPrefDlg
::
slotCancel
);
connect
(
button
(
QDialogButtonBox
::
Apply
),
&
QAbstractButton
::
clicked
,
this
,
&
KAlarmPrefDlg
::
slotApply
);
...
...
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