From: APTX Date: Sun, 1 Feb 2015 12:38:39 +0000 (+0100) Subject: Remove unnecessary semicolons. X-Git-Url: https://gitweb.aptx.org/?a=commitdiff_plain;h=2d96292a39bb72f11063eac8c2548601390e18ec;p=anidbudpclient.git Remove unnecessary semicolons. --- diff --git a/authcommand.h b/authcommand.h index ac44be8..77af314 100644 --- a/authcommand.h +++ b/authcommand.h @@ -46,8 +46,8 @@ class AuthReply : public AbstractReply Q_OBJECT REPLY_DEFINITION_HELPER(Auth) - Q_PROPERTY(QString sessionId READ sessionId); - Q_PROPERTY(QString errorString READ errorString RESET clearError); + Q_PROPERTY(QString sessionId READ sessionId) + Q_PROPERTY(QString errorString READ errorString RESET clearError) public: diff --git a/hash.h b/hash.h index d3efbb8..41f5080 100644 --- a/hash.h +++ b/hash.h @@ -86,8 +86,8 @@ class ANIDBUDPCLIENTSHARED_EXPORT HashResult : public QObject friend class Hash; Q_OBJECT - Q_PROPERTY(QFileInfo fileInfo READ fileInfo); - Q_PROPERTY(QByteArray hash READ hash); + Q_PROPERTY(QFileInfo fileInfo READ fileInfo) + Q_PROPERTY(QByteArray hash READ hash) HashResult(const HashRequest &request);