diff -r 6b63ca65093a -r aad866c37519 securitydialogs/SecUi/Src/SecUiSystemLock.cpp --- a/securitydialogs/SecUi/Src/SecUiSystemLock.cpp Thu May 27 13:44:17 2010 +0300 +++ b/securitydialogs/SecUi/Src/SecUiSystemLock.cpp Fri Jun 11 14:28:40 2010 +0300 @@ -22,7 +22,7 @@ #include #include "SecUiSystemLock.h" #include -#include +// #include #include #include "secuisecuritysettings.h" #include "SecUiWait.h" @@ -50,6 +50,7 @@ // EXPORT_C CSystemLock* CSystemLock::NewL() { + RDebug::Printf( "%s %s (%u) this should not be called=%x", __FILE__, __PRETTY_FUNCTION__, __LINE__, 0 ); CSystemLock* self = new(ELeave) CSystemLock(); CleanupStack::PushL(self); self->ConstructL(); @@ -64,6 +65,7 @@ // void CSystemLock::ConstructL() { + RDebug::Printf( "%s %s (%u) this should not be called=%x", __FILE__, __PRETTY_FUNCTION__, __LINE__, 0 ); /***************************************************** * Series 60 Customer / ETel * Series 60 ETel API @@ -143,7 +145,8 @@ // // ---------------------------------------------------------- // CSystemLock::SetLockedL() -// Activates system lock +// Activates system lock +// this was used by SysAp, but it's not longer used // ---------------------------------------------------------- // EXPORT_C void CSystemLock::SetLockedL() @@ -152,6 +155,7 @@ * Series 60 Customer / ETel * Series 60 ETel API *****************************************************/ + RDebug::Printf( "%s %s (%u) this should not be called=%x", __FILE__, __PRETTY_FUNCTION__, __LINE__, 0 ); #if defined(_DEBUG) RDebug::Print(_L("(SECUI)CSystemLock::SetLockedL()")); #endif @@ -160,17 +164,20 @@ CDevicelockAccessApi* iDevicelockAccess = CDevicelockAccessApi::NewL( ); RDebug::Printf( "%s %s (%u) value=%x", __FILE__, __PRETTY_FUNCTION__, __LINE__, 0 ); iDevicelockAccess->OfferDevicelock(); - // EnableDevicelock( EDevicelockManual ); + // this will do EnableDevicelock( EDevicelockManual ); RDebug::Printf( "%s %s (%u) value=%x", __FILE__, __PRETTY_FUNCTION__, __LINE__, 0 ); } // // ---------------------------------------------------------- // CSystemLock::RunL() // Handles query result +// this was used by SysAp, but it's not longer used // ---------------------------------------------------------- // void CSystemLock::RunL() { + RDebug::Printf( "%s %s (%u) this should not be called=%x", __FILE__, __PRETTY_FUNCTION__, __LINE__, 0 ); + #if defined(_DEBUG) TInt status(iStatus.Int()); RDebug::Print(_L("(SECUI)CSystemLock::RunL(): %d"), status); @@ -188,14 +195,16 @@ RDebug::Print(_L("(SECUI)CSystemLock::RunL() KErrNone")); #endif // clear notifiers - AknNotifierController::HideAllNotifications(ETrue); + // not any more. Avkon is deprecated. Besides, this function should not be called. + // AknNotifierController::HideAllNotifications(ETrue); // query approved -> lock system #ifdef RD_REMOTELOCK iProperty.Set(KPSUidCoreApplicationUIs, KCoreAppUIsAutolockStatus, EManualLocked); #else// !RD_REMOTELOCK iProperty.Set(KPSUidCoreApplicationUIs, KCoreAppUIsAutolockStatus, EAutolockOn); #endif//RD_REMOTELOCK - AknNotifierController::HideAllNotifications(EFalse); + // not any more. Avkon is deprecated. Besides, this function should not be called. + // AknNotifierController::HideAllNotifications(EFalse); } } else if((iStatus != KErrCancel) && (iStatus != KErrAbort))