Rename the resizingMask parameter of the BDragger constructor to resizingMode matching the BeBook.
This commit is contained in:
@@ -24,7 +24,7 @@ namespace BPrivate {
|
|||||||
class BDragger : public BView {
|
class BDragger : public BView {
|
||||||
public:
|
public:
|
||||||
BDragger(BRect bounds, BView* target,
|
BDragger(BRect bounds, BView* target,
|
||||||
uint32 resizingMask = B_FOLLOW_NONE,
|
uint32 resizingMode = B_FOLLOW_NONE,
|
||||||
uint32 flags = B_WILL_DRAW);
|
uint32 flags = B_WILL_DRAW);
|
||||||
BDragger(BMessage* data);
|
BDragger(BMessage* data);
|
||||||
virtual ~BDragger();
|
virtual ~BDragger();
|
||||||
|
|||||||
@@ -113,7 +113,8 @@ DraggerManager* DraggerManager::sDefaultInstance = NULL;
|
|||||||
} // unnamed namespace
|
} // unnamed namespace
|
||||||
|
|
||||||
|
|
||||||
BDragger::BDragger(BRect bounds, BView* target, uint32 resizeMask, uint32 flags)
|
BDragger::BDragger(BRect bounds, BView* target, uint32 resizingMode,
|
||||||
|
uint32 flags)
|
||||||
:
|
:
|
||||||
BView(bounds, "_dragger_", resizeMask, flags),
|
BView(bounds, "_dragger_", resizeMask, flags),
|
||||||
fTarget(target),
|
fTarget(target),
|
||||||
|
|||||||
Reference in New Issue
Block a user