Fixed incorrect usage of `signals', `slots' in headers
authorRohan McGovern <rohan.mcgovern@nokia.com>
Thu, 12 May 2011 00:00:26 +0000 (10:00 +1000)
committerRohan McGovern <rohan.mcgovern@nokia.com>
Thu, 12 May 2011 04:40:16 +0000 (14:40 +1000)
Qt headers must use Q_SIGNALS, Q_SLOTS.

Reviewed-by: Jason McDonald
Change-Id: I54b3322befd8f133d44aa48f3aa7cd96785d2e24

src/declarative/items/qsgcanvas.h
src/declarative/scenegraph/util/qsgengine.h

index d076d09..54701ca 100644 (file)
@@ -75,7 +75,7 @@ public:
 
     QSGEngine *sceneGraphEngine() const;
 
-signals:
+Q_SIGNALS:
     void sceneGraphInitialized();
 
 protected:
@@ -100,7 +100,7 @@ protected:
     virtual void wheelEvent(QWheelEvent *);
 #endif
 
-private slots:
+private Q_SLOTS:
     void sceneGraphChanged();
     void maybeUpdate();
 
index 9e07f35..1665d88 100644 (file)
@@ -79,7 +79,7 @@ public:
     void setClearColor(const QColor &color);
     QColor clearColor() const;
 
-signals:
+Q_SIGNALS:
     void beforeRendering();
     void afterRendering();