diff options
author | Erkin Bahceci <erkinbah@gmail.com> | 2009-03-14 10:28:46 -0500 |
---|---|---|
committer | Erkin Bahceci <erkinbah@gmail.com> | 2009-03-14 10:28:46 -0500 |
commit | d2e32d8779866261c71a769c46fc6e07272d2438 (patch) | |
tree | 90902f5611a740faf0157a3b8275721587a65d5c | |
parent | e9ae18b949fba9416d99192ea5d47a07caa607ce (diff) | |
download | resizeinfo-d2e32d8779866261c71a769c46fc6e07272d2438.tar.gz resizeinfo-d2e32d8779866261c71a769c46fc6e07272d2438.tar.bz2 |
Track core changes.
-rw-r--r-- | resizeinfo.cpp | 4 | ||||
-rw-r--r-- | resizeinfo.h | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/resizeinfo.cpp b/resizeinfo.cpp index 8daedb8..9c96605 100644 --- a/resizeinfo.cpp +++ b/resizeinfo.cpp @@ -479,7 +479,7 @@ InfoScreen::handleEvent (XEvent *event) } InfoScreen::InfoScreen (CompScreen *screen) : - PrivateHandler <InfoScreen, CompScreen> (screen), + PluginClassHandler <InfoScreen, CompScreen> (screen), ResizeinfoOptions (resizeinfoVTable->getMetadata ()), gScreen (GLScreen::get (screen)), cScreen (CompositeScreen::get (screen)), @@ -508,7 +508,7 @@ InfoScreen::InfoScreen (CompScreen *screen) : } InfoWindow::InfoWindow (CompWindow *window) : - PrivateHandler <InfoWindow, CompWindow> (window), + PluginClassHandler <InfoWindow, CompWindow> (window), window (window) { WindowInterface::setHandler (window); diff --git a/resizeinfo.h b/resizeinfo.h index 9e35b47..19322c1 100644 --- a/resizeinfo.h +++ b/resizeinfo.h @@ -22,7 +22,7 @@ **/ #include <core/core.h> -#include <core/privatehandler.h> +#include <core/pluginclasshandler.h> #include <composite/composite.h> #include <opengl/opengl.h> @@ -65,7 +65,7 @@ class InfoLayer }; class InfoScreen : - public PrivateHandler <InfoScreen, CompScreen>, + public PluginClassHandler <InfoScreen, CompScreen>, public ScreenInterface, public CompositeScreenInterface, public GLScreenInterface, @@ -111,7 +111,7 @@ class InfoScreen : }; class InfoWindow : - public PrivateHandler <InfoWindow, CompWindow>, + public PluginClassHandler <InfoWindow, CompWindow>, public WindowInterface { public: |