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
KSmtp
Commits
21ef2595
Commit
21ef2595
authored
Nov 23, 2021
by
Laurent Montel
😁
Browse files
Use directly = default here
parent
5ade357e
Pipeline
#100204
passed with stage
in 3 minutes and 30 seconds
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
autotests/smtptest.cpp
View file @
21ef2595
...
...
@@ -246,9 +246,7 @@ void SmtpTest::testSendJob()
fakeServer
.
quit
();
}
SmtpTest
::
SmtpTest
()
{
}
SmtpTest
::
SmtpTest
()
=
default
;
void
SmtpTest
::
initTestCase
()
{
...
...
src/job_p.h
View file @
21ef2595
...
...
@@ -22,9 +22,7 @@ public:
{
}
virtual
~
JobPrivate
()
{
}
virtual
~
JobPrivate
()
=
default
;
inline
SessionPrivate
*
sessionInternal
()
{
...
...
src/loginjob.cpp
View file @
21ef2595
...
...
@@ -46,9 +46,7 @@ public:
{
}
~
LoginJobPrivate
()
override
{
}
~
LoginJobPrivate
()
override
=
default
;
bool
sasl_interact
();
bool
sasl_init
();
...
...
@@ -80,9 +78,7 @@ LoginJob::LoginJob(Session *session)
{
}
LoginJob
::~
LoginJob
()
{
}
LoginJob
::~
LoginJob
()
=
default
;
void
LoginJob
::
setUserName
(
const
QString
&
userName
)
{
...
...
src/session.cpp
View file @
21ef2595
...
...
@@ -102,9 +102,7 @@ Session::Session(const QString &hostName, quint16 port, QObject *parent)
connect
(
d
->
m_thread
,
&
SessionThread
::
sslError
,
d
,
&
SessionPrivate
::
handleSslError
);
}
Session
::~
Session
()
{
}
Session
::~
Session
()
=
default
;
void
Session
::
setUseNetworkProxy
(
bool
useProxy
)
{
...
...
src/sessionuiproxy.cpp
View file @
21ef2595
...
...
@@ -6,6 +6,4 @@
#include "sessionuiproxy.h"
KSmtp
::
SessionUiProxy
::~
SessionUiProxy
()
{
}
KSmtp
::
SessionUiProxy
::~
SessionUiProxy
()
=
default
;
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