diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-02-20 00:25:42 +0200 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-02-20 00:25:42 +0200 |
commit | 3f00faa305201fabcc74e17dc24da4cefa9dbfa5 (patch) | |
tree | 460a7a06c97912e5ed9a525f01624748dd7a16a6 /src/gui/widgets/mouseevent.h | |
parent | da9ec0b7b8e061b3d3bf1d145284de9d778456c1 (diff) | |
download | plus-3f00faa305201fabcc74e17dc24da4cefa9dbfa5.tar.gz plus-3f00faa305201fabcc74e17dc24da4cefa9dbfa5.tar.bz2 plus-3f00faa305201fabcc74e17dc24da4cefa9dbfa5.tar.xz plus-3f00faa305201fabcc74e17dc24da4cefa9dbfa5.zip |
Fix some code style and some errors.
Diffstat (limited to 'src/gui/widgets/mouseevent.h')
-rw-r--r-- | src/gui/widgets/mouseevent.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/widgets/mouseevent.h b/src/gui/widgets/mouseevent.h index 774132d79..5e9a46cfd 100644 --- a/src/gui/widgets/mouseevent.h +++ b/src/gui/widgets/mouseevent.h @@ -29,9 +29,9 @@ class MouseEvent : public gcn::MouseEvent { public: MouseEvent(gcn::Widget* source, bool isShiftPressed, - bool isControlPressed, bool isAltPressed, bool isMetaPressed, - unsigned int type, unsigned int button, int x, int y, - int clickCount) : + bool isControlPressed, bool isAltPressed, + bool isMetaPressed, unsigned int type, unsigned int button, + int x, int y, int clickCount) : gcn::MouseEvent(source, isShiftPressed, isControlPressed, isAltPressed, isMetaPressed, type, button, x, y, clickCount) |