diff -r 9386f31cc85b -r 269724087bed bluetoothengine/btnotif/src/btnpaireddevsettnotifier.cpp --- a/bluetoothengine/btnotif/src/btnpaireddevsettnotifier.cpp Wed Sep 01 12:20:04 2010 +0100 +++ b/bluetoothengine/btnotif/src/btnpaireddevsettnotifier.cpp Tue Sep 14 21:37:10 2010 +0300 @@ -86,27 +86,18 @@ // ---------------------------------------------------------- -// CBTPairedDevSettNotifier::GetParamsL +// CBTPairedDevSettNotifier::ProcessStartParamsL // Mandatory for BT Notifiers when using asynchronous launch. // This notifier is synchronous so no implementation is needed. // ---------------------------------------------------------- // -void CBTPairedDevSettNotifier::GetParamsL(const TDesC8& aBuffer, - TInt aReplySlot, - const RMessagePtr2& aMessage) +void CBTPairedDevSettNotifier::ProcessStartParamsL() { - FLOG(_L("[BTNOTIF]\t CBTPairedDevSettNotifier::GetParamsL")); + FLOG(_L("[BTNOTIF]\t CBTPairedDevSettNotifier::ProcessStartParamsL")); - if( iReplySlot != NULL || !iMessage.IsNull()) - { - User::Leave(KErrInUse); - } + ProcessParamBufferL(*iParamBuffer); - iMessage = aMessage; - iReplySlot = aReplySlot; - ProcessParamBufferL(aBuffer); - - FLOG(_L("[BTNOTIF]\t CBTPairedDevSettNotifier::GetParamsL Complete")); + FLOG(_L("[BTNOTIF]\t CBTPairedDevSettNotifier::ProcessStartParamsL Complete")); } // ----------------------------------------------------------