Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
PIM
KDE PIM Add-ons
Commits
125280b1
Commit
125280b1
authored
Oct 06, 2020
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused lib + don't use QPointer here
parent
6570c7eb
Pipeline
#36572
failed with stage
in 60 minutes and 9 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
kmail/editorsendcheckplugins/automaticaddcontacts/automaticaddcontactsplugin.cpp
...ugins/automaticaddcontacts/automaticaddcontactsplugin.cpp
+2
-3
kmail/editorsendcheckplugins/automaticaddcontacts/autotests/CMakeLists.txt
...heckplugins/automaticaddcontacts/autotests/CMakeLists.txt
+1
-1
No files found.
kmail/editorsendcheckplugins/automaticaddcontacts/automaticaddcontactsplugin.cpp
View file @
125280b1
...
...
@@ -36,9 +36,8 @@ bool AutomaticAddContactsPlugin::hasConfigureDialog() const
void
AutomaticAddContactsPlugin
::
showConfigureDialog
(
QWidget
*
parent
)
{
QPointer
<
AutomaticAddContactsConfigureDialog
>
dlg
=
new
AutomaticAddContactsConfigureDialog
(
parent
);
dlg
->
exec
();
delete
dlg
;
AutomaticAddContactsConfigureDialog
dlg
(
parent
);
dlg
.
exec
();
}
#include "automaticaddcontactsplugin.moc"
kmail/editorsendcheckplugins/automaticaddcontacts/autotests/CMakeLists.txt
View file @
125280b1
...
...
@@ -11,7 +11,7 @@ macro(add_kmail_automaticaddscontacts_unittest _source _additional)
add_test
(
NAME
${
_name
}
COMMAND
${
_name
}
)
ecm_mark_as_test
(
kmail_editorplugin-
${
_name
}
)
target_link_libraries
(
${
_name
}
Qt5::Test KF5::MessageComposer KF5::I18n KF5::PimCommon KF5::AkonadiContact
KF5::Libkdepim
)
target_link_libraries
(
${
_name
}
Qt5::Test KF5::MessageComposer KF5::I18n KF5::PimCommon KF5::AkonadiContact
)
endmacro
()
if
(
KDEPIM_RUN_AKONADI_TEST
)
...
...
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