summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@theqtcompany.com>2014-12-16 01:01:41 +0100
committerSimon Hausmann <simon.hausmann@theqtcompany.com>2014-12-16 01:01:41 +0100
commit6f8924c39eba282f700ab98db22aa3f792d727d5 (patch)
treefbab974ddd1b98b32e4c019905fd2dd30704fa52
parent4b08c36a0a912312d3470d6dc298b50d4640be00 (diff)
Fix build with MSVC
Q_DECL_OVERRIDE comes last in the declaration
-rw-r--r--examples/widgets/pdfviewer/pagerenderer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/widgets/pdfviewer/pagerenderer.h b/examples/widgets/pdfviewer/pagerenderer.h
index 7b11e9b..35c8939 100644
--- a/examples/widgets/pdfviewer/pagerenderer.h
+++ b/examples/widgets/pdfviewer/pagerenderer.h
@@ -25,7 +25,7 @@ signals:
void pageReady(int page, qreal zoom, QImage image);
protected:
- Q_DECL_OVERRIDE void run();
+ void run() Q_DECL_OVERRIDE;
private:
void renderPage(int page, qreal zoom);