From: Mikko Rasa Date: Thu, 13 Dec 2007 15:07:33 +0000 (+0000) Subject: class Window from mspgbase is now inside namespace Graphics X-Git-Tag: 0.9~21 X-Git-Url: http://git.tdb.fi/?p=libs%2Fgltk.git;a=commitdiff_plain;h=6be5b834084fb3ab421b94b6c4ad8eece6bab754 class Window from mspgbase is now inside namespace Graphics --- diff --git a/source/root.cpp b/source/root.cpp index 8dfe491..bb3913c 100644 --- a/source/root.cpp +++ b/source/root.cpp @@ -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) { diff --git a/source/root.h b/source/root.h index 0d30951..2248ab8 100644 --- a/source/root.h +++ b/source/root.h @@ -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);