Make Q slots public in class Scene

This commit just makes the slots public that are used in Scene class and its inheriting subclasses.
icc-effect-5.14.5
Arthur Arlt 2011-06-19 22:18:21 +02:00
parent b63c9c1af8
commit 14af45cc04
3 changed files with 3 additions and 3 deletions

View File

@ -97,7 +97,7 @@ public:
bool waitSyncAvailable() {
return has_waitSync;
}
protected Q_SLOTS:
public Q_SLOTS:
// opacity of a window changed
virtual void windowOpacityChanged(KWin::Toplevel* c) = 0;
// shape/size of a window changed

View File

@ -59,7 +59,7 @@ protected:
virtual void paintGenericScreen(int mask, ScreenPaintData data);
virtual void paintBackground(QRegion region);
QMatrix4x4 transformation(int mask, const ScreenPaintData &data) const;
protected Q_SLOTS:
public Q_SLOTS:
virtual void windowOpacityChanged(KWin::Toplevel* c);
virtual void windowGeometryShapeChanged(KWin::Toplevel* c);
private:

View File

@ -54,7 +54,7 @@ public:
protected:
virtual void paintBackground(QRegion region);
virtual void paintGenericScreen(int mask, ScreenPaintData data);
protected Q_SLOTS:
public Q_SLOTS:
virtual void windowOpacityChanged(KWin::Toplevel* c);
virtual void windowGeometryShapeChanged(KWin::Toplevel* c);
private: