Coding style: remove superfluous semicolons

Remove a semicolon after Q_OBJECT and a few others after the closing
braces of while loops.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2018-03-06 10:38:21 +01:00 committed by Lubomir I. Ivanov
parent d2d46d848a
commit 8f4604ead8
2 changed files with 6 additions and 6 deletions

View file

@ -7,7 +7,7 @@
#include <QNetworkReply>
class ImageDownloader : public QObject {
Q_OBJECT;
Q_OBJECT
public:
ImageDownloader(struct picture *picture);
~ImageDownloader();