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:
parent
6fe601e4bc
commit
5186ddc1d9
|
@ -75,7 +75,7 @@ public:
|
||||||
|
|
||||||
QSGEngine *sceneGraphEngine() const;
|
QSGEngine *sceneGraphEngine() const;
|
||||||
|
|
||||||
signals:
|
Q_SIGNALS:
|
||||||
void sceneGraphInitialized();
|
void sceneGraphInitialized();
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
@ -100,7 +100,7 @@ protected:
|
||||||
virtual void wheelEvent(QWheelEvent *);
|
virtual void wheelEvent(QWheelEvent *);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
private slots:
|
private Q_SLOTS:
|
||||||
void sceneGraphChanged();
|
void sceneGraphChanged();
|
||||||
void maybeUpdate();
|
void maybeUpdate();
|
||||||
|
|
||||||
|
|
|
@ -79,7 +79,7 @@ public:
|
||||||
void setClearColor(const QColor &color);
|
void setClearColor(const QColor &color);
|
||||||
QColor clearColor() const;
|
QColor clearColor() const;
|
||||||
|
|
||||||
signals:
|
Q_SIGNALS:
|
||||||
void beforeRendering();
|
void beforeRendering();
|
||||||
void afterRendering();
|
void afterRendering();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue