From a74be424753510d9914486f34020037f2f002e77 Mon Sep 17 00:00:00 2001 From: Adi Oanca Date: Thu, 25 Sep 2003 15:16:07 +0000 Subject: [PATCH] fixed a compiler error git-svn-id: file:///srv/svn/repos/haiku/trunk/current@4820 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/servers/app/Decorator.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/headers/private/servers/app/Decorator.h b/headers/private/servers/app/Decorator.h index cb57d4717d..bfcb56a162 100644 --- a/headers/private/servers/app/Decorator.h +++ b/headers/private/servers/app/Decorator.h @@ -37,6 +37,7 @@ class DisplayDriver; class ServerFont; +class BRegion; typedef enum { CLICK_NONE=0, CLICK_ZOOM, CLICK_CLOSE, CLICK_MINIMIZE, CLICK_TAB, CLICK_DRAG, CLICK_MOVETOBACK, CLICK_MOVETOFRONT, CLICK_SLIDETAB, @@ -83,7 +84,7 @@ public: ColorSet GetColors(void) { return (_colors)?*_colors:ColorSet(); } virtual BRect SlideTab(float dx, float dy=0); - virtual BRegion *GetFootprint(void); + virtual void GetFootprint(BRegion *region); virtual click_type Clicked(BPoint pt, int32 buttons, int32 modifiers); virtual void MoveBy(float x, float y);