Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Utilities
KDebugSettings
Commits
15f1251c
Commit
15f1251c
authored
Dec 16, 2019
by
Laurent Montel
Browse files
Add @title:window
parent
01fd7c1f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/configurecustomsettingdialog.cpp
View file @
15f1251c
...
...
@@ -30,7 +30,7 @@ ConfigureCustomSettingDialog::ConfigureCustomSettingDialog(QWidget *parent)
:
QDialog
(
parent
)
{
QVBoxLayout
*
mainLayout
=
new
QVBoxLayout
(
this
);
setWindowTitle
(
i18n
(
"Add custom rule"
));
setWindowTitle
(
i18n
c
(
"@title:window"
,
"Add custom rule"
));
mCustomSettingWidget
=
new
ConfigureCustomSettingWidget
(
this
);
mCustomSettingWidget
->
setObjectName
(
QStringLiteral
(
"customsettingwidget"
));
...
...
@@ -52,7 +52,7 @@ ConfigureCustomSettingDialog::~ConfigureCustomSettingDialog()
void
ConfigureCustomSettingDialog
::
setRule
(
const
QString
&
rule
)
{
setWindowTitle
(
i18n
(
"Edit custom rule"
));
setWindowTitle
(
i18n
c
(
"@title:window"
,
"Edit custom rule"
));
mCustomSettingWidget
->
setRule
(
rule
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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