aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/maemo/maemo.h
diff options
context:
space:
mode:
Diffstat (limited to 'backends/platform/maemo/maemo.h')
-rw-r--r--backends/platform/maemo/maemo.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/backends/platform/maemo/maemo.h b/backends/platform/maemo/maemo.h
index c80639600e..e42936ddf0 100644
--- a/backends/platform/maemo/maemo.h
+++ b/backends/platform/maemo/maemo.h
@@ -28,6 +28,7 @@
#include "backends/platform/sdl/posix/posix.h"
#include "backends/platform/maemo/maemo-common.h"
+namespace Maemo {
class OSystem_SDL_Maemo : public OSystem_POSIX {
public:
@@ -38,16 +39,18 @@ public:
virtual void fatalError();
virtual void setWindowCaption(const char *caption);
- Maemo::Model getModel() { return _model; }
+ Model getModel() { return _model; }
private:
virtual void setXWindowName(const char *caption);
- const Maemo::Model detectModel();
- Maemo::Model _model;
+ const Model detectModel();
+ Model _model;
};
+} // namespace Maemo
+
#endif // ifndef PLATFORM_SDL_MAEMO_H
#endif // if defined(MAEMO)