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
KDE PIM Add-ons
Commits
41e9886e
Commit
41e9886e
authored
Jan 21, 2022
by
Laurent Montel
😁
Browse files
Continue to implement configure settings
parent
3c9a06c3
Pipeline
#126451
failed with stage
in 13 minutes and 44 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
plugins/messageviewerconfigureplugins/openurlwith/openurlwithconfigurewidget.cpp
View file @
41e9886e
...
...
@@ -53,6 +53,7 @@ void OpenUrlWithConfigureWidget::slotAddRule()
{
QPointer
<
OpenUrlWithConfigureCreateDialog
>
dlg
=
new
OpenUrlWithConfigureCreateDialog
(
this
);
if
(
dlg
->
exec
())
{
const
OpenUrlWithConfigureCreateWidget
::
OpenUrlWithInfo
info
=
dlg
->
info
();
// TODO
}
delete
dlg
;
...
...
@@ -61,7 +62,10 @@ void OpenUrlWithConfigureWidget::slotAddRule()
void
OpenUrlWithConfigureWidget
::
slotEditRule
()
{
QPointer
<
OpenUrlWithConfigureCreateDialog
>
dlg
=
new
OpenUrlWithConfigureCreateDialog
(
this
);
OpenUrlWithConfigureCreateWidget
::
OpenUrlWithInfo
info
;
// TODO
dlg
->
setInfo
(
info
);
if
(
dlg
->
exec
())
{
const
OpenUrlWithConfigureCreateWidget
::
OpenUrlWithInfo
info
=
dlg
->
info
();
// TODO
}
delete
dlg
;
...
...
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