[haiku-commits] haiku: hrev50237 - src/preferences/bluetooth

  • From: kallisti5@xxxxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sun, 17 Apr 2016 21:59:11 +0200 (CEST)

hrev50237 adds 1 changeset to branch 'master'
old head: d16a0a9fc2f6b4f10e8a9eea4bb045e27e08da93
new head: f0f01d2a89d044379e81f2b9fe0e1b22f858ba7d
overview: 
http://cgit.haiku-os.org/haiku/log/?qt=range&q=f0f01d2a89d0+%5Ed16a0a9fc2f6

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

f0f01d2a89d0: bluetooth: Fix preferences build? Works here (again)

                          [ Alexander von Gluck IV <kallisti5@xxxxxxxxxxx> ]

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

Revision:    hrev50237
Commit:      f0f01d2a89d044379e81f2b9fe0e1b22f858ba7d
URL:         http://cgit.haiku-os.org/haiku/commit/?id=f0f01d2a89d0
Author:      Alexander von Gluck IV <kallisti5@xxxxxxxxxxx>
Date:        Sun Apr 17 20:07:30 2016 UTC

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

1 file changed, 1 insertion(+), 1 deletion(-)
src/preferences/bluetooth/BluetoothSettingsView.cpp | 2 +-

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

diff --git a/src/preferences/bluetooth/BluetoothSettingsView.cpp 
b/src/preferences/bluetooth/BluetoothSettingsView.cpp
index 0e9a6a0..d30472b 100644
--- a/src/preferences/bluetooth/BluetoothSettingsView.cpp
+++ b/src/preferences/bluetooth/BluetoothSettingsView.cpp
@@ -304,7 +304,7 @@ BluetoothSettingsView::_BuildLocalDevicesMenu()
                fLocalDevicesMenu = new BPopUpMenu(B_TRANSLATE("Pick 
device..."));
 
        while (fLocalDevicesMenu->CountItems() > 0) {
-               BMenuItem* item = fLocalDevicesMenu->RemoveItem(0L);
+               BMenuItem* item = fLocalDevicesMenu->RemoveItem((int32)0);
 
                if (item != NULL) {
                        delete item;


Other related posts:

  • » [haiku-commits] haiku: hrev50237 - src/preferences/bluetooth - kallisti5