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
20cb2be4
Commit
20cb2be4
authored
May 18, 2021
by
Laurent Montel
😁
Browse files
Add buttondialogbox
parent
32d679a1
Pipeline
#62370
passed with stage
in 40 minutes and 24 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
messagelist/src/core/widgets/configurefiltersdialog.cpp
View file @
20cb2be4
...
...
@@ -20,6 +20,16 @@ ConfigureFiltersDialog::ConfigureFiltersDialog(QWidget *parent)
:
QDialog
(
parent
)
,
mConfigureFiltersWidget
(
new
ConfigureFiltersWidget
(
this
))
{
auto
mainLayout
=
new
QVBoxLayout
(
this
);
mainLayout
->
setObjectName
(
QStringLiteral
(
"mainLayout"
));
mConfigureFiltersWidget
->
setObjectName
(
QStringLiteral
(
"mConfigureFiltersWidget"
));
mainLayout
->
addWidget
(
mConfigureFiltersWidget
);
auto
button
=
new
QDialogButtonBox
(
QDialogButtonBox
::
Ok
|
QDialogButtonBox
::
Cancel
,
this
);
mainLayout
->
addWidget
(
button
);
connect
(
button
,
&
QDialogButtonBox
::
accepted
,
this
,
&
ConfigureFiltersDialog
::
accept
);
connect
(
button
,
&
QDialogButtonBox
::
rejected
,
this
,
&
ConfigureFiltersDialog
::
reject
);
readConfig
();
}
...
...
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