Commit f15384fe authored by Bhushan Shah's avatar Bhushan Shah Committed by Giulio Camuffo
Browse files

Fix the build error in public headers


One should always use Q_SLOTS/Q_SIGNALS in then public headers

Change-Id: Ibbba0d3ff402bd320049bcd58ced07ad1342ef3b
Reviewed-by: default avatarGiulio Camuffo <giulio.camuffo@jollamobile.com>
Showing with 3 additions and 3 deletions
...@@ -227,7 +227,7 @@ public: ...@@ -227,7 +227,7 @@ public:
static QWaylandSurface *fromResource(::wl_resource *resource); static QWaylandSurface *fromResource(::wl_resource *resource);
public slots: public Q_SLOTS:
void updateSelection(); void updateSelection();
protected: protected:
......
...@@ -102,11 +102,11 @@ protected: ...@@ -102,11 +102,11 @@ protected:
void touchEvent(QTouchEvent *event); void touchEvent(QTouchEvent *event);
void mouseUngrabEvent() Q_DECL_OVERRIDE; void mouseUngrabEvent() Q_DECL_OVERRIDE;
public slots: public Q_SLOTS:
virtual void takeFocus(QWaylandInputDevice *device = 0); virtual void takeFocus(QWaylandInputDevice *device = 0);
void setPaintEnabled(bool paintEnabled); void setPaintEnabled(bool paintEnabled);
private slots: private Q_SLOTS:
void surfaceMapped(); void surfaceMapped();
void surfaceUnmapped(); void surfaceUnmapped();
void parentChanged(QWaylandSurface *newParent, QWaylandSurface *oldParent); void parentChanged(QWaylandSurface *newParent, QWaylandSurface *oldParent);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment