aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/base
diff options
context:
space:
mode:
Diffstat (limited to 'engines/wintermute/base')
-rw-r--r--engines/wintermute/base/base.h4
-rw-r--r--engines/wintermute/base/font/base_font.h4
-rw-r--r--engines/wintermute/base/gfx/base_renderer.h2
3 files changed, 4 insertions, 6 deletions
diff --git a/engines/wintermute/base/base.h b/engines/wintermute/base/base.h
index b07065ec0d..f4c1cf0739 100644
--- a/engines/wintermute/base/base.h
+++ b/engines/wintermute/base/base.h
@@ -45,7 +45,7 @@ public:
bool _persistable;
bool setEditorProp(const Common::String &propName, const Common::String &propValue);
Common::String getEditorProp(const Common::String &propName, const Common::String &initVal = NULL);
- BaseClass(TDynamicConstructor, TDynamicConstructor) {};
+ BaseClass(TDynamicConstructor, TDynamicConstructor) {}
bool parseEditorProperty(byte *buffer, bool complete = true);
virtual bool saveAsText(BaseDynamicBuffer *buffer, int indent = 0);
BaseClass();
@@ -55,8 +55,6 @@ public:
protected:
Common::HashMap<Common::String, Common::String> _editorProps;
Common::HashMap<Common::String, Common::String>::iterator _editorPropsIter;
- /* std::map<std::string, std::string> _editorProps;
- std::map<std::string, std::string>::iterator _editorPropsIter;*/
};
} // end of namespace Wintermute
diff --git a/engines/wintermute/base/font/base_font.h b/engines/wintermute/base/font/base_font.h
index 461a724160..acd424ac06 100644
--- a/engines/wintermute/base/font/base_font.h
+++ b/engines/wintermute/base/font/base_font.h
@@ -43,8 +43,8 @@ public:
virtual void drawText(const byte *text, int x, int y, int width, TTextAlign align = TAL_LEFT, int max_height = -1, int maxLength = -1);
virtual int getLetterHeight();
- virtual void initLoop() {};
- virtual void afterLoad() {};
+ virtual void initLoop() {}
+ virtual void afterLoad() {}
BaseFont(BaseGame *inGame);
virtual ~BaseFont();
diff --git a/engines/wintermute/base/gfx/base_renderer.h b/engines/wintermute/base/gfx/base_renderer.h
index 26d7e6db57..0ff4e6a3be 100644
--- a/engines/wintermute/base/gfx/base_renderer.h
+++ b/engines/wintermute/base/gfx/base_renderer.h
@@ -54,7 +54,7 @@ public:
int _drawOffsetX;
int _drawOffsetY;
- virtual void dumpData(const char *filename) {};
+ virtual void dumpData(const char *filename) {}
/**
* Take a screenshot of the current screenstate
*