diff -r 9386f31cc85b -r 269724087bed bluetoothengine/btnotif/src/btnumcmpnotifier.cpp --- a/bluetoothengine/btnotif/src/btnumcmpnotifier.cpp Wed Sep 01 12:20:04 2010 +0100 +++ b/bluetoothengine/btnotif/src/btnumcmpnotifier.cpp Tue Sep 14 21:37:10 2010 +0300 @@ -90,19 +90,19 @@ } // ---------------------------------------------------------- -// CBTNumCmpNotifier::GetParamsL +// CBTNumCmpNotifier::ProcessStartParamsL // Initialize parameters and check if device is already // in registry. Jump to RunL as soon as possible. // ---------------------------------------------------------- // -void CBTNumCmpNotifier::GetParamsL(const TDesC8& aBuffer, TInt aReplySlot, const RMessagePtr2& aMessage) +void CBTNumCmpNotifier::ProcessStartParamsL() { - FLOG(_L("[BTNOTIF]\t CBTNumCmpNotifier::GetParamsL()")); + FLOG(_L("[BTNOTIF]\t CBTNumCmpNotifier::ProcessStartParamsL()")); - CBTNPairNotifierBase::GetParamsL( aBuffer, aReplySlot, aMessage ); + CBTNPairNotifierBase::ProcessStartParamsL(); TBTNumericComparisonParamsPckg pckg; - pckg.Copy(aBuffer); + pckg.Copy(*iParamBuffer); iBTAddr = pckg().DeviceAddress(); if ( OtherOutgoPairing( iBTAddr) ) { @@ -120,7 +120,7 @@ // base class ProcessParamsGetDeviceL( iBTAddr, pckg().DeviceName() ); - FLOG(_L("[BTNOTIF]\t CBTNumCmpNotifier::GetParamsL() completed")); + FLOG(_L("[BTNOTIF]\t CBTNumCmpNotifier::ProcessStartParamsL() completed")); } // ----------------------------------------------------------