diff -r 25fce757be94 -r e02eb84a14d2 usbengines/usbwatcher/src/cusbactivestate.cpp --- a/usbengines/usbwatcher/src/cusbactivestate.cpp Tue Aug 31 16:13:57 2010 +0300 +++ b/usbengines/usbwatcher/src/cusbactivestate.cpp Wed Sep 01 12:20:49 2010 +0100 @@ -56,7 +56,7 @@ // start USB if cable is pluged-in at bootup if( EUsbDeviceStateUndefined != iCurrentState ) { - iOwner.StateChangeNotifyL( iPreviousState, iCurrentState ); + iOwner.StateChangeNotify( iPreviousState, iCurrentState ); iPreviousState = iCurrentState; } iUsbMan.DeviceStateNotification( KUsbAllStates, iCurrentState, iStatus ); @@ -106,7 +106,7 @@ { LOG2( "USB device state changed: %d ==> %d", iPreviousState, newState ); - iOwner.StateChangeNotifyL( iPreviousState, newState ); + iOwner.StateChangeNotify( iPreviousState, newState ); iPreviousState = newState; } else