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
KMail
Commits
067b8767
Commit
067b8767
authored
Feb 01, 2022
by
Tobias Leupold
Browse files
Added missing variable declarations for KDEPIM_ENTERPRISE_BUILD
parent
8cac7587
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/configuredialog/configurecomposerpage.cpp
View file @
067b8767
...
...
@@ -331,13 +331,13 @@ ComposerPageGeneralTab::ComposerPageGeneralTab(QWidget *parent)
#if KDEPIM_ENTERPRISE_BUILD
// "Warn if too many recipients" checkbox/spinbox
mRecipientCheck
=
new
QCheckBox
(
KMailSettings
::
self
()
->
tooManyRecipientsItem
()
->
label
(),
this
);
auto
mRecipientCheck
=
new
QCheckBox
(
KMailSettings
::
self
()
->
tooManyRecipientsItem
()
->
label
(),
this
);
mRecipientCheck
->
setObjectName
(
QStringLiteral
(
"kcfg_TooManyRecipients"
));
helpText
=
i18n
(
KMailSettings
::
self
()
->
tooManyRecipientsItem
()
->
whatsThis
().
toUtf8
().
constData
());
mRecipientCheck
->
setWhatsThis
(
helpText
);
mRecipientCheck
->
setToolTip
(
i18n
(
"Warn if too many recipients are specified"
));
mRecipientSpin
=
new
QSpinBox
(
this
);
auto
mRecipientSpin
=
new
QSpinBox
(
this
);
mRecipientSpin
->
setMaximum
(
100
/*max*/
);
mRecipientSpin
->
setMinimum
(
1
/*min*/
);
mRecipientSpin
->
setSingleStep
(
1
/*step*/
);
...
...
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