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 Runtime
Commits
3c8387b6
Commit
3c8387b6
authored
Dec 07, 2020
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing override on destructor
parent
cf027722
Pipeline
#43297
skipped
Changes
22
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
22 changed files
with
22 additions
and
22 deletions
+22
-22
resources/google-groupware/googleresourcestate.h
resources/google-groupware/googleresourcestate.h
+1
-1
resources/ical/shared/icalresourcebase.h
resources/ical/shared/icalresourcebase.h
+1
-1
resources/imap/autotests/dummyresourcestate.h
resources/imap/autotests/dummyresourcestate.h
+1
-1
resources/imap/imapresourcebase.h
resources/imap/imapresourcebase.h
+1
-1
resources/imap/resourcestate.h
resources/imap/resourcestate.h
+1
-1
resources/imap/searchtask.h
resources/imap/searchtask.h
+1
-1
resources/kalarm/kalarmdir/kalarmdirresource.h
resources/kalarm/kalarmdir/kalarmdirresource.h
+1
-1
resources/kolab/pimkolab/kolabformatV2/contact.h
resources/kolab/pimkolab/kolabformatV2/contact.h
+1
-1
resources/kolab/pimkolab/kolabformatV2/distributionlist.h
resources/kolab/pimkolab/kolabformatV2/distributionlist.h
+1
-1
resources/kolab/pimkolab/kolabformatV2/event.h
resources/kolab/pimkolab/kolabformatV2/event.h
+1
-1
resources/kolab/pimkolab/kolabformatV2/note.h
resources/kolab/pimkolab/kolabformatV2/note.h
+1
-1
resources/mbox/deleteditemsattribute.h
resources/mbox/deleteditemsattribute.h
+1
-1
resources/mixedmaildir/mixedmaildirresource.h
resources/mixedmaildir/mixedmaildirresource.h
+1
-1
resources/mixedmaildir/mixedmaildirstore.h
resources/mixedmaildir/mixedmaildirstore.h
+1
-1
resources/mixedmaildir/retrieveitemsjob.h
resources/mixedmaildir/retrieveitemsjob.h
+1
-1
resources/openxchange/openxchangeresource.h
resources/openxchange/openxchangeresource.h
+1
-1
resources/pop3/jobs.h
resources/pop3/jobs.h
+1
-1
resources/shared/filestore/abstractlocalstore.h
resources/shared/filestore/abstractlocalstore.h
+1
-1
resources/shared/filestore/entitycompactchangeattribute.h
resources/shared/filestore/entitycompactchangeattribute.h
+1
-1
resources/shared/singlefileresource/singlefileresource.h
resources/shared/singlefileresource/singlefileresource.h
+1
-1
resources/shared/singlefileresource/singlefileresourceconfigbase.h
.../shared/singlefileresource/singlefileresourceconfigbase.h
+1
-1
resources/vcard/vcardresource.h
resources/vcard/vcardresource.h
+1
-1
No files found.
resources/google-groupware/googleresourcestate.h
View file @
3c8387b6
...
...
@@ -15,7 +15,7 @@ class GoogleResourceState : public GoogleResourceStateInterface
{
public:
explicit
GoogleResourceState
(
GoogleResource
*
resource
);
~
GoogleResourceState
()
=
default
;
~
GoogleResourceState
()
override
=
default
;
// Items handling
void
itemRetrieved
(
const
Akonadi
::
Item
&
item
)
override
;
...
...
resources/ical/shared/icalresourcebase.h
View file @
3c8387b6
...
...
@@ -20,7 +20,7 @@ class ICalResourceBase : public Akonadi::SingleFileResource<SETTINGS_NAMESPACE::
public:
explicit
ICalResourceBase
(
const
QString
&
id
);
~
ICalResourceBase
();
~
ICalResourceBase
()
override
;
protected:
using
ResourceBase
::
retrieveItems
;
// Suppress -Woverload-virtual
...
...
resources/imap/autotests/dummyresourcestate.h
View file @
3c8387b6
...
...
@@ -21,7 +21,7 @@ public:
typedef
QSharedPointer
<
DummyResourceState
>
Ptr
;
explicit
DummyResourceState
();
~
DummyResourceState
();
~
DummyResourceState
()
override
;
void
setUserName
(
const
QString
&
name
);
QString
userName
()
const
override
;
...
...
resources/imap/imapresourcebase.h
View file @
3c8387b6
...
...
@@ -40,7 +40,7 @@ protected:
public:
explicit
ImapResourceBase
(
const
QString
&
id
);
~
ImapResourceBase
();
~
ImapResourceBase
()
override
;
virtual
QDialog
*
createConfigureDialog
(
WId
windowId
)
=
0
;
...
...
resources/imap/resourcestate.h
View file @
3c8387b6
...
...
@@ -105,7 +105,7 @@ public:
explicit
ResourceState
(
ImapResourceBase
*
resource
,
const
TaskArguments
&
arguments
);
public:
~
ResourceState
();
~
ResourceState
()
override
;
QString
userName
()
const
override
;
QString
resourceName
()
const
override
;
...
...
resources/imap/searchtask.h
View file @
3c8387b6
...
...
@@ -15,7 +15,7 @@ class SearchTask : public ResourceTask
Q_OBJECT
public:
SearchTask
(
const
ResourceStateInterface
::
Ptr
&
state
,
const
QString
&
query
,
QObject
*
parent
);
~
SearchTask
();
~
SearchTask
()
override
;
protected:
void
doStart
(
KIMAP
::
Session
*
session
)
override
;
...
...
resources/kalarm/kalarmdir/kalarmdirresource.h
View file @
3c8387b6
...
...
@@ -24,7 +24,7 @@ class KAlarmDirResource : public Akonadi::ResourceBase, public Akonadi::AgentBas
Q_OBJECT
public:
explicit
KAlarmDirResource
(
const
QString
&
id
);
~
KAlarmDirResource
();
~
KAlarmDirResource
()
override
;
public
Q_SLOTS
:
void
configure
(
WId
windowId
)
override
;
...
...
resources/kolab/pimkolab/kolabformatV2/contact.h
View file @
3c8387b6
...
...
@@ -45,7 +45,7 @@ public:
explicit
Contact
(
const
KContacts
::
Addressee
*
address
);
Contact
(
const
QString
&
xml
);
~
Contact
();
~
Contact
()
override
;
void
saveTo
(
KContacts
::
Addressee
*
address
);
...
...
resources/kolab/pimkolab/kolabformatV2/distributionlist.h
View file @
3c8387b6
...
...
@@ -20,7 +20,7 @@ class DistributionList : public KolabBase
public:
explicit
DistributionList
(
const
KContacts
::
ContactGroup
*
contactGroup
);
DistributionList
(
const
QString
&
xml
);
~
DistributionList
();
~
DistributionList
()
override
;
void
saveTo
(
KContacts
::
ContactGroup
*
contactGroup
);
...
...
resources/kolab/pimkolab/kolabformatV2/event.h
View file @
3c8387b6
...
...
@@ -35,7 +35,7 @@ public:
/// Create a event object and
explicit
Event
(
const
QString
&
tz
,
const
KCalendarCore
::
Event
::
Ptr
&
event
=
KCalendarCore
::
Event
::
Ptr
());
virtual
~
Event
();
~
Event
()
override
;
void
saveTo
(
const
KCalendarCore
::
Event
::
Ptr
&
event
);
...
...
resources/kolab/pimkolab/kolabformatV2/note.h
View file @
3c8387b6
...
...
@@ -35,7 +35,7 @@ public:
/// Create a note object and
explicit
Note
(
const
KCalendarCore
::
Journal
::
Ptr
&
journal
=
KCalendarCore
::
Journal
::
Ptr
());
virtual
~
Note
()
;
~
Note
()
override
;
void
saveTo
(
const
KCalendarCore
::
Journal
::
Ptr
&
journal
)
const
;
...
...
resources/mbox/deleteditemsattribute.h
View file @
3c8387b6
...
...
@@ -23,7 +23,7 @@ public:
DeletedItemsAttribute
(
const
DeletedItemsAttribute
&
other
);
~
DeletedItemsAttribute
();
~
DeletedItemsAttribute
()
override
;
void
addDeletedItemOffset
(
quint64
);
...
...
resources/mixedmaildir/mixedmaildirresource.h
View file @
3c8387b6
...
...
@@ -22,7 +22,7 @@ class MixedMaildirResource : public Akonadi::ResourceBase, public Akonadi::Agent
public:
explicit
MixedMaildirResource
(
const
QString
&
id
);
~
MixedMaildirResource
();
~
MixedMaildirResource
()
override
;
protected
Q_SLOTS
:
void
retrieveCollections
()
override
;
...
...
resources/mixedmaildir/mixedmaildirstore.h
View file @
3c8387b6
...
...
@@ -17,7 +17,7 @@ class MixedMaildirStore : public Akonadi::FileStore::AbstractLocalStore
public:
MixedMaildirStore
();
~
MixedMaildirStore
();
~
MixedMaildirStore
()
override
;
protected:
void
setTopLevelCollection
(
const
Akonadi
::
Collection
&
collection
)
override
;
...
...
resources/mixedmaildir/retrieveitemsjob.h
View file @
3c8387b6
...
...
@@ -26,7 +26,7 @@ class RetrieveItemsJob : public Akonadi::Job
public:
RetrieveItemsJob
(
const
Akonadi
::
Collection
&
collection
,
MixedMaildirStore
*
store
,
QObject
*
parent
=
nullptr
);
~
RetrieveItemsJob
();
~
RetrieveItemsJob
()
override
;
Akonadi
::
Collection
collection
()
const
;
...
...
resources/openxchange/openxchangeresource.h
View file @
3c8387b6
...
...
@@ -15,7 +15,7 @@ class OpenXchangeResource : public Akonadi::ResourceBase, public Akonadi::AgentB
public:
explicit
OpenXchangeResource
(
const
QString
&
id
);
~
OpenXchangeResource
();
~
OpenXchangeResource
()
override
;
void
cleanup
()
override
;
...
...
resources/pop3/jobs.h
View file @
3c8387b6
...
...
@@ -68,7 +68,7 @@ class SlaveBaseJob : public KJob
public:
explicit
SlaveBaseJob
(
POPSession
*
POPSession
);
~
SlaveBaseJob
();
~
SlaveBaseJob
()
override
;
virtual
void
slaveError
(
int
errorCode
,
const
QString
&
errorMessage
);
...
...
resources/shared/filestore/abstractlocalstore.h
View file @
3c8387b6
...
...
@@ -27,7 +27,7 @@ class AKONADI_FILESTORE_EXPORT AbstractLocalStore : public QObject, public Store
public:
AbstractLocalStore
();
~
AbstractLocalStore
();
~
AbstractLocalStore
()
override
;
virtual
void
setPath
(
const
QString
&
path
);
QString
path
()
const
;
...
...
resources/shared/filestore/entitycompactchangeattribute.h
View file @
3c8387b6
...
...
@@ -19,7 +19,7 @@ class AKONADI_FILESTORE_EXPORT EntityCompactChangeAttribute : public Attribute
public:
EntityCompactChangeAttribute
();
~
EntityCompactChangeAttribute
();
~
EntityCompactChangeAttribute
()
override
;
void
setRemoteId
(
const
QString
&
remoteId
);
...
...
resources/shared/singlefileresource/singlefileresource.h
View file @
3c8387b6
...
...
@@ -42,7 +42,7 @@ public:
setNeedsNetwork
(
!
QUrl
::
fromUserInput
(
mSettings
->
path
()).
isLocalFile
());
}
~
SingleFileResource
()
~
SingleFileResource
()
override
{
delete
mSettings
;
}
...
...
resources/shared/singlefileresource/singlefileresourceconfigbase.h
View file @
3c8387b6
...
...
@@ -23,7 +23,7 @@ public:
{
}
~
SingleFileResourceConfigBase
()
~
SingleFileResourceConfigBase
()
override
{
}
...
...
resources/vcard/vcardresource.h
View file @
3c8387b6
...
...
@@ -19,7 +19,7 @@ class VCardResource : public Akonadi::SingleFileResource<Akonadi_VCard_Resource:
public:
explicit
VCardResource
(
const
QString
&
id
);
~
VCardResource
();
~
VCardResource
()
override
;
protected:
using
ResourceBase
::
retrieveItems
;
// Suppress -Woverload-virtual
...
...
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