Added a private static BorderSize() method. I wonder why those functions

are exposed at all...


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6663 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2004-02-20 18:43:34 +00:00
parent a8c4af5a80
commit 28632c48ce
+2 -1
View File
@@ -15,7 +15,7 @@
class BScrollView : public BView {
public:
BScrollView(const char *name, BView *target,
uint32 resizeMask = B_FOLLOW_LEFT | B_FOLLOW_TOP,
uint32 resizingMode = B_FOLLOW_LEFT | B_FOLLOW_TOP,
uint32 flags = 0, bool horizontal = false, bool vertical = false,
border_style border = B_FANCY_BORDER);
BScrollView(BMessage *archive);
@@ -75,6 +75,7 @@ class BScrollView : public BView {
BScrollView &operator=(const BScrollView &);
static BRect CalcFrame(BView *target, bool h, bool v, border_style);
static float BorderSize(border_style border);
static int32 ModifyFlags(int32 flags, border_style);
BView *fTarget;