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