[haiku-commits] haiku: hrev46513 - src/apps/haiku-depot

  • From: superstippi@xxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Mon, 9 Dec 2013 12:26:23 +0100 (CET)

hrev46513 adds 1 changeset to branch 'master'
old head: 964e6ee15ad787b61dda2eb6cf78176d83dd44f6
new head: 3c0c19bbf01998381c81adf6f2b4e843879cf10c
overview: http://cgit.haiku-os.org/haiku/log/?qt=range&q=3c0c19b+%5E964e6ee

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

3c0c19b: HaikuDepot: Should fix 64-Bit build.

                                      [ Stephan Aßmus <superstippi@xxxxxx> ]

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

Revision:    hrev46513
Commit:      3c0c19bbf01998381c81adf6f2b4e843879cf10c
URL:         http://cgit.haiku-os.org/haiku/commit/?id=3c0c19b
Author:      Stephan Aßmus <superstippi@xxxxxx>
Date:        Mon Dec  9 11:25:53 2013 UTC

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

1 file changed, 3 insertions(+), 3 deletions(-)
src/apps/haiku-depot/PackageInfoView.cpp | 6 +++---

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

diff --git a/src/apps/haiku-depot/PackageInfoView.cpp 
b/src/apps/haiku-depot/PackageInfoView.cpp
index 0ab5a54..4840056 100644
--- a/src/apps/haiku-depot/PackageInfoView.cpp
+++ b/src/apps/haiku-depot/PackageInfoView.cpp
@@ -1327,7 +1327,7 @@ PackageInfoView::PackageInfoView(BLocker* modelLock,
        BGroupView* packageCard = new BGroupView("package card", B_VERTICAL);
        AddChild(packageCard);
 
-       fCardLayout->SetVisibleItem(0L);
+       fCardLayout->SetVisibleItem((int32)0);
 
        fTitleView = new TitleView();
        fPackageActionView = new PackageActionView(handler);
@@ -1417,7 +1417,7 @@ PackageInfoView::SetPackage(const PackageInfoRef& 
packageRef)
        fPackageActionView->SetPackage(package);
        fPagesView->SetPackage(package);
 
-       fCardLayout->SetVisibleItem(1L);
+       fCardLayout->SetVisibleItem(1);
 
        fPackageListener->SetPackage(packageRef);
 }
@@ -1430,7 +1430,7 @@ PackageInfoView::Clear()
        fPackageActionView->Clear();
        fPagesView->Clear();
 
-       fCardLayout->SetVisibleItem(0L);
+       fCardLayout->SetVisibleItem((int32)0);
 
        BAutolock _(fModelLock);
 


Other related posts:

  • » [haiku-commits] haiku: hrev46513 - src/apps/haiku-depot - superstippi