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
KMail
Commits
14eeeef7
Commit
14eeeef7
authored
Jan 21, 2021
by
Laurent Montel
😁
Browse files
Use std::unique_ptr
parent
23e33e05
Pipeline
#48255
failed with stage
in 17 minutes and 39 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
agents/mailfilteragent/filtermanager.cpp
View file @
14eeeef7
...
...
@@ -289,8 +289,6 @@ FilterManager::FilterManager(QObject *parent)
FilterManager
::~
FilterManager
()
{
clear
();
delete
d
;
}
void
FilterManager
::
clear
()
...
...
agents/mailfilteragent/filtermanager.h
View file @
14eeeef7
...
...
@@ -12,7 +12,7 @@
#include <AkonadiCore/item.h>
#include <MailCommon/SearchPattern>
#include <memory>
namespace
MailCommon
{
class
MailFilter
;
class
ItemContext
;
...
...
@@ -139,7 +139,7 @@ Q_SIGNALS:
private:
//@cond PRIVATE
class
Private
;
Private
*
d
;
std
::
unique_ptr
<
Private
>
const
d
;
//@endcond
};
...
...
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