diff options
author | Erkin Bahceci <erkinbah@gmail.com> | 2009-03-14 10:28:01 -0500 |
---|---|---|
committer | Erkin Bahceci <erkinbah@gmail.com> | 2009-03-14 10:28:01 -0500 |
commit | bfdd911077d7fa92f976461d90625fdb917321db (patch) | |
tree | 37c0ad4ebf8fbac9cc8ddf9bdd730b11e74404f9 | |
parent | df837742db05b9773c98e7a8d1534d400ba2a4f9 (diff) | |
download | put-bfdd911077d7fa92f976461d90625fdb917321db.tar.gz put-bfdd911077d7fa92f976461d90625fdb917321db.tar.bz2 |
Track core changes.
-rw-r--r-- | put.cpp | 4 | ||||
-rw-r--r-- | put.h | 6 |
2 files changed, 5 insertions, 5 deletions
@@ -1178,7 +1178,7 @@ PutScreen::initiate (CompAction *action, PutScreen::PutScreen (CompScreen *screen) : - PrivateHandler <PutScreen, CompScreen> (screen), + PluginClassHandler <PutScreen, CompScreen> (screen), PutOptions (putVTable->getMetadata ()), screen (screen), cScreen (CompositeScreen::get (screen)), @@ -1222,7 +1222,7 @@ PutScreen::PutScreen (CompScreen *screen) : } PutWindow::PutWindow (CompWindow *window) : - PrivateHandler <PutWindow, CompWindow> (window), + PluginClassHandler <PutWindow, CompWindow> (window), window (window), cWindow (CompositeWindow::get (window)), gWindow (GLWindow::get (window)), @@ -19,7 +19,7 @@ #include <core/core.h> -#include <core/privatehandler.h> +#include <core/pluginclasshandler.h> #include <composite/composite.h> #include <opengl/opengl.h> #include "put_options.h" @@ -58,7 +58,7 @@ enum PutType }; class PutScreen : - public PrivateHandler <PutScreen, CompScreen>, + public PluginClassHandler <PutScreen, CompScreen>, public PutOptions, public ScreenInterface, public CompositeScreenInterface, @@ -161,7 +161,7 @@ class PutScreen : }; class PutWindow : - public PrivateHandler <PutWindow, CompWindow>, + public PluginClassHandler <PutWindow, CompWindow>, public WindowInterface, public CompositeWindowInterface, public GLWindowInterface |