Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-03-08 07:05:57 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-08 07:05:57 +0400
commit640d766370c50366f32ca533f772b8a96b4adf5a (patch)
tree91b7f3b2be852839c5c1843d8a3b420a0f6921a5 /source/gameengine/GamePlayer/ghost
parent1c91d62c7e682c72173750e88505ba08f6fabcdf (diff)
style cleanup - remove unneeded ';'s
Diffstat (limited to 'source/gameengine/GamePlayer/ghost')
-rw-r--r--source/gameengine/GamePlayer/ghost/GPG_Canvas.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/gameengine/GamePlayer/ghost/GPG_Canvas.h b/source/gameengine/GamePlayer/ghost/GPG_Canvas.h
index e96cd50b9f4..d931f605a64 100644
--- a/source/gameengine/GamePlayer/ghost/GPG_Canvas.h
+++ b/source/gameengine/GamePlayer/ghost/GPG_Canvas.h
@@ -55,14 +55,14 @@ public:
virtual void SetMousePosition(int x, int y);
virtual void SetMouseState(RAS_MouseState mousestate);
virtual void SwapBuffers();
- virtual int GetMouseX(int x){return x;};
- virtual int GetMouseY(int y){return y;};
+ virtual int GetMouseX(int x) { return x; }
+ virtual int GetMouseY(int y) { return y; }
virtual float GetMouseNormalizedX(int x);
virtual float GetMouseNormalizedY(int y);
virtual void ResizeWindow(int width, int height);
- bool BeginDraw() { return true;};
+ bool BeginDraw() { return true; }
void EndDraw() {};
};