bluetoothengine/btnotif/src/BTNPwrNotifier.cpp
branchRCL_3
changeset 24 269724087bed
parent 0 f63038272f30
--- a/bluetoothengine/btnotif/src/BTNPwrNotifier.cpp	Wed Sep 01 12:20:04 2010 +0100
+++ b/bluetoothengine/btnotif/src/BTNPwrNotifier.cpp	Tue Sep 14 21:37:10 2010 +0300
@@ -72,22 +72,16 @@
     }
 
 // ----------------------------------------------------------
-// CBTPwrNotifier::GetParamsL
+// CBTPwrNotifier::ProcessStartParamsL
 // Initialize parameters. Jump to RunL as soon as possible.
 // ----------------------------------------------------------
 //
-void CBTPwrNotifier::GetParamsL(const TDesC8& /*aBuffer*/, TInt aReplySlot, const RMessagePtr2& aMessage)
+void CBTPwrNotifier::ProcessStartParamsL()
     {
-    FLOG(_L("[BTNOTIF]\t CBTPwrNotifier::GetParamsL()"));
-
-    if( iReplySlot!=NULL || !iMessage.IsNull() )
-        User::Leave(KErrInUse);
-
-    iMessage = aMessage;
-    iReplySlot = aReplySlot;
+    FLOG(_L("[BTNOTIF]\t CBTPwrNotifier::ProcessStartParamsL()"));
 
     ShowNoteAndCompleteMessageL();
-    FLOG(_L("[BTNOTIF]\t CBTPwrNotifier::GetParamsL() completed"));
+    FLOG(_L("[BTNOTIF]\t CBTPwrNotifier::ProcessStartParamsL() completed"));
     }
 
 // ----------------------------------------------------------