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
This commit is contained in:
Fredrik Modeen
2011-05-08 08:25:41 +00:00
parent fae2ac4671
commit cd273c4865
@@ -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);