From 3f00faa305201fabcc74e17dc24da4cefa9dbfa5 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 20 Feb 2011 00:25:42 +0200 Subject: Fix some code style and some errors. --- src/gui/widgets/browserbox.cpp | 2 +- src/gui/widgets/mouseevent.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/gui/widgets') diff --git a/src/gui/widgets/browserbox.cpp b/src/gui/widgets/browserbox.cpp index d2d908b95..eaeed4d06 100644 --- a/src/gui/widgets/browserbox.cpp +++ b/src/gui/widgets/browserbox.cpp @@ -244,7 +244,7 @@ struct MouseOverLink MouseOverLink(int x, int y) : mX(x), mY(y) { } - bool operator() (BROWSER_LINK &link) + bool operator() (BROWSER_LINK &link) const { return (mX >= link.x1 && mX < link.x2 && mY >= link.y1 && mY < link.y2); 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) -- cgit v1.2.3-70-g09d2