telepathy-qt: IODevice: Removed Q_DECL_OVERRIDE usage.
Alexandr Akulich
kaffeine at kemper.freedesktop.org
Sun Jun 12 11:22:29 UTC 2016
Module: telepathy-qt
Branch: master
Commit: 28b8237f7c91c8b31c91321e69a70aaca2610fbd
URL: http://cgit.freedesktop.org/telepathy/telepathy-qt/commit/?id=28b8237f7c91c8b31c91321e69a70aaca2610fbd
Author: Alexandr Akulich <akulichalexander at gmail.com>
Date: Sun Jun 12 16:00:02 2016 +0500
IODevice: Removed Q_DECL_OVERRIDE usage.
It is not available in Qt4.
---
TelepathyQt/io-device.h | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/TelepathyQt/io-device.h b/TelepathyQt/io-device.h
index d629973..da8493f 100644
--- a/TelepathyQt/io-device.h
+++ b/TelepathyQt/io-device.h
@@ -40,12 +40,12 @@ class TP_QT_EXPORT IODevice : public QIODevice
public:
explicit IODevice(QObject *parent = 0);
~IODevice();
- bool isSequential() const Q_DECL_OVERRIDE;
- qint64 bytesAvailable() const Q_DECL_OVERRIDE;
+ bool isSequential() const;
+ qint64 bytesAvailable() const;
protected:
- qint64 readData(char *data, qint64 maxSize) Q_DECL_OVERRIDE;
- qint64 writeData(const char *data, qint64 maxSize) Q_DECL_OVERRIDE;
+ qint64 readData(char *data, qint64 maxSize);
+ qint64 writeData(const char *data, qint64 maxSize);
private:
class Private;
More information about the telepathy-commits
mailing list