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