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
PIM Messagelib
Commits
d9d0527e
Commit
d9d0527e
authored
Jun 01, 2021
by
Laurent Montel
😁
Browse files
Not necessary to use ok/cancel here
parent
3a3d6e0e
Pipeline
#63749
passed with stage
in 41 minutes and 25 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
messagelist/src/core/widgets/configurefiltersdialog.cpp
View file @
d9d0527e
...
...
@@ -26,7 +26,7 @@ ConfigureFiltersDialog::ConfigureFiltersDialog(QWidget *parent)
mConfigureFiltersWidget
->
setObjectName
(
QStringLiteral
(
"mConfigureFiltersWidget"
));
mainLayout
->
addWidget
(
mConfigureFiltersWidget
);
auto
button
=
new
QDialogButtonBox
(
QDialogButtonBox
::
Ok
|
QDialogButtonBox
::
Cancel
,
this
);
auto
button
=
new
QDialogButtonBox
(
QDialogButtonBox
::
Close
,
this
);
mainLayout
->
addWidget
(
button
);
connect
(
button
,
&
QDialogButtonBox
::
accepted
,
this
,
&
ConfigureFiltersDialog
::
accept
);
connect
(
button
,
&
QDialogButtonBox
::
rejected
,
this
,
&
ConfigureFiltersDialog
::
reject
);
...
...
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