diff -r 001a94c71129 -r 16e4b9007960 bluetoothengine/btui/btuidelegate/btdelegateconnect.cpp --- a/bluetoothengine/btui/btuidelegate/btdelegateconnect.cpp Wed Sep 29 13:09:05 2010 +0300 +++ b/bluetoothengine/btui/btuidelegate/btdelegateconnect.cpp Wed Oct 13 13:15:31 2010 +0300 @@ -29,6 +29,7 @@ #include #include #include +#include BtDelegateConnect::BtDelegateConnect( BtSettingModel* settingModel, @@ -137,6 +138,8 @@ } if( error ) { + QString prompt = HbParameterLengthLimiter(hbTrId("txt_bt_info_unable_to_connect_with_bluetooth")).arg(mDeviceName); + HbMessageBox::warning(prompt); emitCommandComplete(error); } BOstraceFunctionExit1( DUMMY_DEVLIST, this ); @@ -195,6 +198,10 @@ } else { // command is finished + if(aErr){ + QString prompt = HbParameterLengthLimiter(hbTrId("txt_bt_info_unable_to_connect_with_bluetooth")).arg(mDeviceName); + HbMessageBox::warning(prompt); + } emitCommandComplete(aErr); } BOstraceFunctionExit1( DUMMY_DEVLIST, this );