[haiku-commits] haiku: hrev45048 - src/kits/interface headers/os/interface

  • From: jscipione@xxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sat, 22 Dec 2012 03:23:08 +0100 (CET)

hrev45048 adds 1 changeset to branch 'master'
old head: ceaf7141fa163a6cdad59be5112f84eb16acb39a
new head: aabb148183d4bd086a46ad614196521b1d3ed77a
overview: http://cgit.haiku-os.org/haiku/log/?qt=range&q=aabb148+%5Eceaf714

----------------------------------------------------------------------------

aabb148: Rename the resizingMask parameter of the BDragger constructor to 
resizingMode matching the BeBook.

                                     [ John Scipione <jscipione@xxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev45048
Commit:      aabb148183d4bd086a46ad614196521b1d3ed77a
URL:         http://cgit.haiku-os.org/haiku/commit/?id=aabb148
Author:      John Scipione <jscipione@xxxxxxxxx>
Date:        Sat Dec 22 02:22:54 2012 UTC

----------------------------------------------------------------------------

2 files changed, 3 insertions(+), 2 deletions(-)
headers/os/interface/Dragger.h | 2 +-
src/kits/interface/Dragger.cpp | 3 ++-

----------------------------------------------------------------------------

diff --git a/headers/os/interface/Dragger.h b/headers/os/interface/Dragger.h
index 623aa11..656baa1 100644
--- a/headers/os/interface/Dragger.h
+++ b/headers/os/interface/Dragger.h
@@ -24,7 +24,7 @@ namespace BPrivate {
 class BDragger : public BView {
 public:
                                                                BDragger(BRect 
bounds, BView* target,
-                                                                       uint32 
resizingMask = B_FOLLOW_NONE,
+                                                                       uint32 
resizingMode = B_FOLLOW_NONE,
                                                                        uint32 
flags = B_WILL_DRAW);
                                                                
BDragger(BMessage* data);
        virtual                                         ~BDragger();
diff --git a/src/kits/interface/Dragger.cpp b/src/kits/interface/Dragger.cpp
index a61e552..910fe15 100644
--- a/src/kits/interface/Dragger.cpp
+++ b/src/kits/interface/Dragger.cpp
@@ -113,7 +113,8 @@ DraggerManager* DraggerManager::sDefaultInstance = NULL;
 }      // 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),
        fTarget(target),


Other related posts:

  • » [haiku-commits] haiku: hrev45048 - src/kits/interface headers/os/interface - jscipione