From cd273c486522eaa0984afac1562de982b6f2ce44 Mon Sep 17 00:00:00 2001 From: Fredrik Modeen Date: Sun, 8 May 2011 08:25:41 +0000 Subject: [PATCH] Guess the constructor was not only used in the layout API ;) git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41376 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/preferences/bluetooth/BluetoothSettingsView.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/preferences/bluetooth/BluetoothSettingsView.cpp b/src/preferences/bluetooth/BluetoothSettingsView.cpp index 51f16cfb6a..b5f6bb5768 100644 --- a/src/preferences/bluetooth/BluetoothSettingsView.cpp +++ b/src/preferences/bluetooth/BluetoothSettingsView.cpp @@ -60,7 +60,7 @@ BluetoothSettingsView::BluetoothSettingsView(const char* name) { _BuildConnectionPolicy(); fPolicyMenuField = new BMenuField("policy", - B_TRANSLATE("Incoming connections policy:"), fPolicyMenu, NULL); + B_TRANSLATE("Incoming connections policy:"), fPolicyMenu); fInquiryTimeControl = new BSlider("time", B_TRANSLATE("Default inquiry time:"), new BMessage(kMsgSetInquiryTime), @@ -74,13 +74,13 @@ BluetoothSettingsView::BluetoothSettingsView(const char* name) // hinting menu _BuildClassMenu(); fClassMenuField = new BMenuField("class", B_TRANSLATE("Identify host as:"), - fClassMenu, NULL); + fClassMenu); // localdevices menu _BuildLocalDevicesMenu(); fLocalDevicesMenuField = new BMenuField("devices", B_TRANSLATE("Local devices found on system:"), - fLocalDevicesMenu, NULL); + fLocalDevicesMenu); fExtDeviceView = new ExtendedLocalDeviceView(BRect(0, 0, 5, 5), NULL);