Fixed incorrect usage of `signals', `slots' in headers

Qt headers must use Q_SIGNALS, Q_SLOTS.

Reviewed-by: Jason McDonald
Change-Id: I54b3322befd8f133d44aa48f3aa7cd96785d2e24
This commit is contained in:
Rohan McGovern 2011-05-12 10:00:26 +10:00
parent 6fe601e4bc
commit 5186ddc1d9
2 changed files with 3 additions and 3 deletions

View 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();

View File

@ -79,7 +79,7 @@ public:
void setClearColor(const QColor &color);
QColor clearColor() const;
signals:
Q_SIGNALS:
void beforeRendering();
void afterRendering();