]> git.tdb.fi Git - libs/gltk.git/commitdiff
class Window from mspgbase is now inside namespace Graphics
authorMikko Rasa <tdb@tdb.fi>
Thu, 13 Dec 2007 15:07:33 +0000 (15:07 +0000)
committerMikko Rasa <tdb@tdb.fi>
Thu, 13 Dec 2007 15:07:33 +0000 (15:07 +0000)
source/root.cpp
source/root.h

index 8dfe491d14f2d16336c43af653d746ad89bd3686..bb3913c73fbf5db85fc85217a98dce872417666a 100644 (file)
@@ -10,7 +10,7 @@ Distributed under the LGPL
 namespace Msp {
 namespace GLtk {
 
-Root::Root(Resources &r, Window &w):
+Root::Root(Resources &r, Graphics::Window &w):
        Panel(r),
        window(w)
 {
index 0d30951f41984b79da011be65164118bcc47be70..2248ab87a82ea3c46dfb8508f1c6f6c8610eeff2 100644 (file)
@@ -23,10 +23,10 @@ rendered to fill the window in order to get coordinates mapped correctly.
 class Root: public Panel
 {
 private:
-       Window &window;
+       Graphics::Window &window;
 
 public:
-       Root(Resources &, Window &);
+       Root(Resources &, Graphics::Window &);
 private:
        virtual const char *get_class() const { return "root"; }
        void button_press_event(int, int, unsigned, unsigned);