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
PIM
KDE PIM Add-ons
Commits
ac51d3e0
Commit
ac51d3e0
authored
Jan 19, 2022
by
Laurent Montel
Browse files
Add edit dialog
parent
d72ceb31
Pipeline
#125540
passed 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 @
ac51d3e0
...
...
@@ -10,6 +10,7 @@
#include
<KMessageBox>
#include
<QHeaderView>
#include
<QMenu>
#include
<QPointer>
#include
<QTreeWidget>
#include
<QVBoxLayout>
...
...
@@ -50,12 +51,20 @@ void OpenUrlWithConfigureWidget::writeSettings()
void
OpenUrlWithConfigureWidget
::
slotAddRule
()
{
// TODO
QPointer
<
OpenUrlWithConfigureCreateDialog
>
dlg
=
new
OpenUrlWithConfigureCreateDialog
(
this
);
if
(
dlg
->
exec
())
{
// TODO
}
delete
dlg
;
}
void
OpenUrlWithConfigureWidget
::
slotEditRule
()
{
// TODO
QPointer
<
OpenUrlWithConfigureCreateDialog
>
dlg
=
new
OpenUrlWithConfigureCreateDialog
(
this
);
if
(
dlg
->
exec
())
{
// TODO
}
delete
dlg
;
}
void
OpenUrlWithConfigureWidget
::
slotRemoveRule
()
...
...
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