bluetoothengine/btnotif/src/BTNGenericQueryNotifier.cpp
branchRCL_3
changeset 61 269724087bed
parent 56 9386f31cc85b
child 72 4b59561a31c0
--- 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"));
     }
 
 // ----------------------------------------------------------