bluetoothengine/btnotif/src/btuserconfnotifier.cpp
branchRCL_3
changeset 61 269724087bed
parent 11 a42ed326b458
child 72 4b59561a31c0
--- a/bluetoothengine/btnotif/src/btuserconfnotifier.cpp	Wed Sep 01 12:20:04 2010 +0100
+++ b/bluetoothengine/btnotif/src/btuserconfnotifier.cpp	Tue Sep 14 21:37:10 2010 +0300
@@ -90,19 +90,19 @@
     }
 
 // ----------------------------------------------------------
-// CBTUserConfNotifier::GetParamsL
+// CBTUserConfNotifier::ProcessStartParamsL
 // Initialize parameters and check if device is already
 // in registry. Jump to RunL as soon as possible.
 // ----------------------------------------------------------
 //
-void CBTUserConfNotifier::GetParamsL(const TDesC8& aBuffer, TInt aReplySlot, const RMessagePtr2& aMessage)
+void CBTUserConfNotifier::ProcessStartParamsL()
     {
-    FLOG(_L("[BTNOTIF]\t CBTUserConfNotifier::GetParamsL()"));
+    FLOG(_L("[BTNOTIF]\t CBTUserConfNotifier::ProcessStartParamsL()"));
 
-    CBTNPairNotifierBase::GetParamsL( aBuffer, aReplySlot, aMessage );
+    CBTNPairNotifierBase::ProcessStartParamsL();
     
     TBTUserConfirmationParamsPckgCopy pckg;
- 	pckg.Copy(aBuffer);
+ 	pckg.Copy(*iParamBuffer);
  	iBTAddr = pckg().DeviceAddress();
     if ( OtherOutgoPairing( iBTAddr) )
         {
@@ -117,7 +117,7 @@
 	// base class
 	ProcessParamsGetDeviceL( iBTAddr, pckg().DeviceName() );
 	
-	FLOG(_L("[BTNOTIF]\t CBTUserConfNotifier::GetParamsL() completed"));
+	FLOG(_L("[BTNOTIF]\t CBTUserConfNotifier::ProcessStartParamsL() completed"));
     }
 
 // ----------------------------------------------------------