From b3b75170707a7bc1cb3ebaa893137e0a62dea021 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Wed, 24 Nov 2010 22:55:57 +0000 Subject: [PATCH] Coding style cleanup. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39618 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/servers/app/WindowBehaviour.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/servers/app/WindowBehaviour.h b/src/servers/app/WindowBehaviour.h index e8ba305958..6ba6636c3a 100644 --- a/src/servers/app/WindowBehaviour.h +++ b/src/servers/app/WindowBehaviour.h @@ -17,21 +17,21 @@ class BMessage; class WindowBehaviour { public: - WindowBehaviour(); - virtual ~WindowBehaviour(); + WindowBehaviour(); + virtual ~WindowBehaviour(); //! \return true if event was a WindowBehaviour event and should be discard - virtual bool MouseDown(BMessage* message, BPoint where) = 0; - virtual void MouseUp(BMessage* message, BPoint where) = 0; - virtual void MouseMoved(BMessage *message, BPoint where, - bool isFake) = 0; + virtual bool MouseDown(BMessage* message, BPoint where) = 0; + virtual void MouseUp(BMessage* message, BPoint where) = 0; + virtual void MouseMoved(BMessage *message, BPoint where, + bool isFake) = 0; - bool IsDragging() const { return fIsDragging; } - bool IsResizing() const { return fIsResizing; } + bool IsDragging() const { return fIsDragging; } + bool IsResizing() const { return fIsResizing; } protected: - bool fIsResizing : 1; - bool fIsDragging : 1; + bool fIsResizing : 1; + bool fIsDragging : 1; };