From a76953d90980792d610f7aaa6a93a98de0f0d2e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Fri, 20 Feb 2004 15:01:04 +0000 Subject: [PATCH] Renamed ModFlags() to ModifyFlags() and made it static (it's private anyway, so this is no problem). On second thought, I like "archive" better than "data" for the Archive message name. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6659 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/os/interface/ScrollView.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/headers/os/interface/ScrollView.h b/headers/os/interface/ScrollView.h index 7d45b9cb07..8e24a807ac 100644 --- a/headers/os/interface/ScrollView.h +++ b/headers/os/interface/ScrollView.h @@ -18,11 +18,11 @@ class BScrollView : public BView { uint32 resizeMask = B_FOLLOW_LEFT | B_FOLLOW_TOP, uint32 flags = 0, bool horizontal = false, bool vertical = false, border_style border = B_FANCY_BORDER); - BScrollView(BMessage *data); + BScrollView(BMessage *archive); virtual ~BScrollView(); - static BArchivable *Instantiate(BMessage *data); - virtual status_t Archive(BMessage *data, bool deep = true) const; + static BArchivable *Instantiate(BMessage *archive); + virtual status_t Archive(BMessage *archive, bool deep = true) const; virtual void Draw(BRect updateRect); virtual void AttachedToWindow(); @@ -75,7 +75,7 @@ class BScrollView : public BView { BScrollView &operator=(const BScrollView &); static BRect CalcFrame(BView *target, bool h, bool v, border_style); - int32 ModFlags(int32 flags, border_style); + static int32 ModifyFlags(int32 flags, border_style); BView *fTarget; BScrollBar *fHorizontalScrollBar;