summaryrefslogtreecommitdiff
path: root/TelepathyQt/abstract-client.h
diff options
context:
space:
mode:
Diffstat (limited to 'TelepathyQt/abstract-client.h')
-rw-r--r--TelepathyQt/abstract-client.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/TelepathyQt/abstract-client.h b/TelepathyQt/abstract-client.h
index 7658489c..8ef44dde 100644
--- a/TelepathyQt/abstract-client.h
+++ b/TelepathyQt/abstract-client.h
@@ -49,7 +49,7 @@ class TP_QT_EXPORT AbstractClient : public RefCounted
public:
AbstractClient();
- virtual ~AbstractClient();
+ ~AbstractClient() override;
bool isRegistered() const;
@@ -86,7 +86,7 @@ public:
QSharedDataPointer<Private> mPriv;
};
- virtual ~AbstractClientObserver();
+ ~AbstractClientObserver() override;
ChannelClassSpecList observerFilter() const;
@@ -114,7 +114,7 @@ class TP_QT_EXPORT AbstractClientApprover : public virtual AbstractClient
Q_DISABLE_COPY(AbstractClientApprover)
public:
- virtual ~AbstractClientApprover();
+ ~AbstractClientApprover() override;
ChannelClassSpecList approverFilter() const;
@@ -286,7 +286,7 @@ public:
QSharedDataPointer<Private> mPriv;
};
- virtual ~AbstractClientHandler();
+ ~AbstractClientHandler() override;
ChannelClassSpecList handlerFilter() const;
@@ -320,8 +320,8 @@ private:
} // Tp
-Q_DECLARE_METATYPE(Tp::AbstractClientObserver::ObserverInfo);
-Q_DECLARE_METATYPE(Tp::AbstractClientHandler::Capabilities);
-Q_DECLARE_METATYPE(Tp::AbstractClientHandler::HandlerInfo);
+Q_DECLARE_METATYPE(Tp::AbstractClientObserver::ObserverInfo)
+Q_DECLARE_METATYPE(Tp::AbstractClientHandler::Capabilities)
+Q_DECLARE_METATYPE(Tp::AbstractClientHandler::HandlerInfo)
#endif