From f62402a785496ad2393c78801d105d52327de9bb Mon Sep 17 00:00:00 2001 From: Adi Oanca Date: Wed, 3 Sep 2003 21:22:24 +0000 Subject: [PATCH] added const to void Scale(); uncommented one method... git-svn-id: file:///srv/svn/repos/haiku/trunk/current@4485 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/os/interface/View.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/headers/os/interface/View.h b/headers/os/interface/View.h index 9d46758e33..f67eec8f1c 100644 --- a/headers/os/interface/View.h +++ b/headers/os/interface/View.h @@ -523,7 +523,7 @@ public: virtual void DrawAfterChildren(BRect r); // added by OBOS - DO NOT use this when programming BeOS R5!!! - float Scale(); + float Scale() const; private: @@ -567,7 +567,7 @@ private: void DoShape(int32 gr, BShape* shape, pattern p); void DoPictureClip(BPicture* picture, BPoint where, bool invert, bool sync); -// bool removeFromList(BView* a_view); + bool removeFromList(BView* a_view); bool removeSelf(); bool do_owner_check() const; void setOwner(BWindow* the_owner);