diff -r 9386f31cc85b -r 269724087bed bluetoothengine/btnotif/src/BTNGenericInfoNotifier.cpp --- a/bluetoothengine/btnotif/src/BTNGenericInfoNotifier.cpp Wed Sep 01 12:20:04 2010 +0100 +++ b/bluetoothengine/btnotif/src/BTNGenericInfoNotifier.cpp Tue Sep 14 21:37:10 2010 +0300 @@ -97,22 +97,14 @@ } // ---------------------------------------------------------- -// CBTGenericInfoNotifier::GetParamsL +// CBTGenericInfoNotifier::ProcessStartParamsL // Mandatory for BT Notifiers when using asynchronous launch. // ---------------------------------------------------------- // -void CBTGenericInfoNotifier::GetParamsL(const TDesC8& aBuffer, - TInt /*aReplySlot*/, - const RMessagePtr2& aMessage ) +void CBTGenericInfoNotifier::ProcessStartParamsL() { - FLOG(_L("[BTNOTIF]\t CBTGenericInfoNotifier::GetParamsL")); - if (!iMessage.IsNull()) - { - aMessage.Complete(KErrInUse); - return; - } - iMessage = aMessage; - ProcessParamBufferL(aBuffer, EFalse); + FLOG(_L("[BTNOTIF]\t CBTGenericInfoNotifier::ProcessStartParamsL")); + ProcessParamBufferL(*iParamBuffer, EFalse); } // ----------------------------------------------------------