From 1d95a5ff3a323c0c64e7d0139ab39c4b422da4b8 Mon Sep 17 00:00:00 2001 From: Stefano Ceccherini Date: Tue, 31 May 2005 12:58:08 +0000 Subject: [PATCH] Renamed the private BScrollBarPrivateData class to be an internal BScrollBar's class git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@12916 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/os/interface/ScrollBar.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/headers/os/interface/ScrollBar.h b/headers/os/interface/ScrollBar.h index c6a54bdbba..eb84190e33 100644 --- a/headers/os/interface/ScrollBar.h +++ b/headers/os/interface/ScrollBar.h @@ -103,8 +103,9 @@ virtual status_t GetSupportedSuites(BMessage *data); virtual status_t Perform(perform_code d, void *arg); private: + class Private; friend class BScrollArrowButton; - friend class BScrollBarPrivateData; + friend class Private; friend status_t control_scrollbar(scroll_bar_info *info, BScrollBar *bar); // for use within the preflet friend status_t scroll_by_value(float valueByWhichToScroll, BScrollBar *bar); // for use here within the IK virtual void _ReservedScrollBar1(); @@ -126,7 +127,7 @@ virtual void _ReservedScrollBar4(); orientation fOrientation; char *fTargetName; - BScrollBarPrivateData *privatedata; + Private *fPrivateData; uint32 _reserved[3]; };