aboutsummaryrefslogtreecommitdiff
path: root/graphics/macgui/macwindowmanager.h
diff options
context:
space:
mode:
authorBorja Lorente2016-07-29 11:44:38 +0200
committerBorja Lorente2016-07-30 09:42:49 +0200
commit592a6defb7841a11aac2d6f6843e052d56504566 (patch)
treeffe82e10ef71fc7619c21af97e4da9856da9f37e /graphics/macgui/macwindowmanager.h
parent3d4087b9d0c199ba48a6f69d7d20a2850215f72f (diff)
downloadscummvm-rg350-592a6defb7841a11aac2d6f6843e052d56504566.tar.gz
scummvm-rg350-592a6defb7841a11aac2d6f6843e052d56504566.tar.bz2
scummvm-rg350-592a6defb7841a11aac2d6f6843e052d56504566.zip
WAGE: Change namespace of MacWindow
Diffstat (limited to 'graphics/macgui/macwindowmanager.h')
-rw-r--r--graphics/macgui/macwindowmanager.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/graphics/macgui/macwindowmanager.h b/graphics/macgui/macwindowmanager.h
index ccc9234a6c..45532edf1e 100644
--- a/graphics/macgui/macwindowmanager.h
+++ b/graphics/macgui/macwindowmanager.h
@@ -55,7 +55,7 @@
#include "graphics/fontman.h"
-#include "engines\wage\macwindow.h"
+#include "engines/wage/macwindow.h"
namespace Wage {
class MacWindow;
@@ -97,7 +97,7 @@ public:
bool hasBuiltInFonts() { return _builtInFonts; }
const Font *getFont(const char *name, FontManager::FontUsage fallback);
- Wage::MacWindow *addWindow(bool scrollable, bool resizable, bool editable);
+ MacWindow *addWindow(bool scrollable, bool resizable, bool editable);
Wage::Menu *addMenu();
void setActive(int id);
@@ -107,7 +107,7 @@ public:
bool processEvent(Common::Event &event);
- Wage::BaseMacWindow *getWindow(int id) { return _windows[id]; }
+ BaseMacWindow *getWindow(int id) { return _windows[id]; }
Patterns &getPatterns() { return _patterns; }
void drawFilledRoundRect(ManagedSurface *surface, Common::Rect &rect, int arc, int color);
@@ -122,8 +122,8 @@ private:
private:
ManagedSurface *_screen;
- Common::List<Wage::BaseMacWindow *> _windowStack;
- Common::Array<Wage::BaseMacWindow *> _windows;
+ Common::List<BaseMacWindow *> _windowStack;
+ Common::Array<BaseMacWindow *> _windows;
int _lastId;
int _activeWindow;