diff -r df7a93ede42e -r a0ea99b6fa53 bluetoothengine/btnotif/btdevicedialogplugin/src/btdevicedialogplugin.cpp --- a/bluetoothengine/btnotif/btdevicedialogplugin/src/btdevicedialogplugin.cpp Wed May 05 09:56:48 2010 +0300 +++ b/bluetoothengine/btnotif/btdevicedialogplugin/src/btdevicedialogplugin.cpp Mon May 17 11:06:23 2010 +0300 @@ -27,6 +27,8 @@ #include "btdevicedialogpluginerrors.h" #include "btdevicesearchdialogwidget.h" +#include "btmoredevicesdialogwidget.h" +#include "btsenddialogwidget.h" Q_EXPORT_PLUGIN2(btdevicedialogplugin, BtDeviceDialogPlugin) @@ -191,9 +193,15 @@ case TBluetoothDialogParams::EInput: deviceDialog = new BtDeviceDialogInputWidget(parameters); break; + case TBluetoothDialogParams::EMoreDevice: + deviceDialog = new BTMoreDevicesDialogWidget(parameters); + break; case TBluetoothDialogParams::EDeviceSearch: deviceDialog = new BTDeviceSearchDialogWidget(parameters); break; + case TBluetoothDialogParams::ESend: + deviceDialog = new BTSendDialogWidget(parameters); + break; case TBluetoothDialogParams::EGlobalNotif: deviceDialog = new BtDeviceDialogNotifWidget(parameters); break;