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
Akonadi Contacts
Commits
38f045e5
Commit
38f045e5
authored
Dec 07, 2020
by
Laurent Montel
😁
Browse files
Add missing override on destructor
parent
6c5d68ba
Pipeline
#43285
skipped
Changes
14
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/akonadi-contacts/attributes/contactmetadataattribute_p.h
View file @
38f045e5
...
...
@@ -32,7 +32,7 @@ public:
/**
* Destroys the contact meta data attribute.
*/
~
ContactMetaDataAttribute
();
~
ContactMetaDataAttribute
()
override
;
/**
* Sets the meta @p data.
...
...
src/akonadi-contacts/contactgroupeditordelegate_p.h
View file @
38f045e5
...
...
@@ -43,7 +43,7 @@ class ContactGroupEditorDelegate : public QStyledItemDelegate
public:
explicit
ContactGroupEditorDelegate
(
QAbstractItemView
*
view
,
QObject
*
parent
=
nullptr
);
~
ContactGroupEditorDelegate
();
~
ContactGroupEditorDelegate
()
override
;
QWidget
*
createEditor
(
QWidget
*
parent
,
const
QStyleOptionViewItem
&
option
,
const
QModelIndex
&
index
)
const
override
;
...
...
src/akonadi-contacts/contactgroupeditordialog.h
View file @
38f045e5
...
...
@@ -80,7 +80,7 @@ public:
/**
* Destroys the contact group editor dialog.
*/
~
ContactGroupEditorDialog
();
~
ContactGroupEditorDialog
()
override
;
/**
* Sets the contact @p group to edit when in EditMode.
...
...
src/akonadi-contacts/contactgroupmodel_p.h
View file @
38f045e5
...
...
@@ -25,7 +25,7 @@ public:
};
explicit
ContactGroupModel
(
QObject
*
parent
=
nullptr
);
~
ContactGroupModel
();
~
ContactGroupModel
()
override
;
void
loadContactGroup
(
const
KContacts
::
ContactGroup
&
contactGroup
);
bool
storeContactGroup
(
KContacts
::
ContactGroup
&
contactGroup
)
const
;
...
...
src/akonadi-contacts/leafextensionproxymodel_p.h
View file @
38f045e5
...
...
@@ -19,7 +19,7 @@ class LeafExtensionProxyModel : public QSortFilterProxyModel
public:
explicit
LeafExtensionProxyModel
(
QObject
*
parent
=
nullptr
);
~
LeafExtensionProxyModel
();
~
LeafExtensionProxyModel
()
override
;
QModelIndex
index
(
int
row
,
int
column
,
const
QModelIndex
&
parent
=
QModelIndex
())
const
override
;
QModelIndex
parent
(
const
QModelIndex
&
index
)
const
override
;
...
...
src/akonadi-contacts/waitingoverlay_p.h
View file @
38f045e5
...
...
@@ -28,7 +28,7 @@ public:
* @param parent must not be equal to baseWidget
*/
explicit
WaitingOverlay
(
KJob
*
job
,
QWidget
*
baseWidget
,
QWidget
*
parent
=
nullptr
);
~
WaitingOverlay
();
~
WaitingOverlay
()
override
;
protected:
bool
eventFilter
(
QObject
*
object
,
QEvent
*
event
)
override
;
...
...
src/contact-editor/editor/addresseditor/addressmodel.h
View file @
38f045e5
...
...
@@ -20,7 +20,7 @@ class AddressModel : public QAbstractListModel
Q_OBJECT
public:
explicit
AddressModel
(
QObject
*
parent
=
nullptr
);
~
AddressModel
();
~
AddressModel
()
override
;
KContacts
::
Address
::
List
addresses
()
const
;
void
setAddresses
(
const
KContacts
::
Address
::
List
&
addresses
);
...
...
src/contact-editor/editor/customfieldeditor/customfieldslistdelegate.h
View file @
38f045e5
...
...
@@ -18,7 +18,7 @@ class CustomFieldsListDelegate : public QStyledItemDelegate
Q_OBJECT
public:
explicit
CustomFieldsListDelegate
(
QAbstractItemView
*
view
,
QObject
*
parent
=
nullptr
);
~
CustomFieldsListDelegate
();
~
CustomFieldsListDelegate
()
override
;
QWidget
*
createEditor
(
QWidget
*
parent
,
const
QStyleOptionViewItem
&
option
,
const
QModelIndex
&
index
)
const
override
;
...
...
src/contact-editor/editor/customfieldeditor/customfieldsmodel.h
View file @
38f045e5
...
...
@@ -23,7 +23,7 @@ public:
};
explicit
CustomFieldsModel
(
QObject
*
parent
=
nullptr
);
~
CustomFieldsModel
();
~
CustomFieldsModel
()
override
;
void
setCustomFields
(
const
CustomField
::
List
&
addresses
);
CustomField
::
List
customFields
()
const
;
...
...
src/contact-editor/editor/generalinfoeditor/categorieseditwidget.h
View file @
38f045e5
...
...
@@ -24,7 +24,7 @@ class CategoriesEditWidget : public ContactEditor::CategoriesEditAbstractWidget
public:
explicit
CategoriesEditWidget
(
QWidget
*
parent
=
nullptr
);
~
CategoriesEditWidget
();
~
CategoriesEditWidget
()
override
;
void
loadContact
(
const
KContacts
::
Addressee
&
contact
)
override
;
void
storeContact
(
KContacts
::
Addressee
&
contact
)
const
override
;
...
...
src/contact-editor/editor/generalinfoeditor/mail/mailwidgetlister.h
View file @
38f045e5
...
...
@@ -21,7 +21,7 @@ class MailWidgetLister : public KWidgetLister
Q_OBJECT
public:
explicit
MailWidgetLister
(
QWidget
*
parent
=
nullptr
);
~
MailWidgetLister
();
~
MailWidgetLister
()
override
;
void
loadContact
(
const
KContacts
::
Addressee
&
contact
);
void
storeContact
(
KContacts
::
Addressee
&
contact
)
const
;
...
...
src/contact-editor/editor/generalinfoeditor/messaging/messagingwidgetlister.h
View file @
38f045e5
...
...
@@ -21,7 +21,7 @@ class MessagingWidgetLister : public KWidgetLister
Q_OBJECT
public:
explicit
MessagingWidgetLister
(
QWidget
*
parent
=
nullptr
);
~
MessagingWidgetLister
();
~
MessagingWidgetLister
()
override
;
void
loadContact
(
const
KContacts
::
Addressee
&
contact
);
void
storeContact
(
KContacts
::
Addressee
&
contact
)
const
;
...
...
src/contact-editor/editor/generalinfoeditor/phone/phonewidgetlister.h
View file @
38f045e5
...
...
@@ -22,7 +22,7 @@ class CONTACTEDITOR_TESTS_EXPORT PhoneWidgetLister : public KWidgetLister
Q_OBJECT
public:
explicit
PhoneWidgetLister
(
QWidget
*
parent
=
nullptr
);
~
PhoneWidgetLister
();
~
PhoneWidgetLister
()
override
;
void
loadContact
(
const
KContacts
::
Addressee
&
contact
);
void
storeContact
(
KContacts
::
Addressee
&
contact
)
const
;
...
...
src/contact-editor/editor/generalinfoeditor/web/webwidgetlister.h
View file @
38f045e5
...
...
@@ -21,7 +21,7 @@ class WebWidgetLister : public KWidgetLister
Q_OBJECT
public:
explicit
WebWidgetLister
(
QWidget
*
parent
=
nullptr
);
~
WebWidgetLister
();
~
WebWidgetLister
()
override
;
void
loadContact
(
const
KContacts
::
Addressee
&
contact
);
void
storeContact
(
KContacts
::
Addressee
&
contact
)
const
;
...
...
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