diff -r f966699dea19 -r ff572dfe6d86 idlehomescreen/xmluirendering/uiengine/src/xnrootdata.cpp --- a/idlehomescreen/xmluirendering/uiengine/src/xnrootdata.cpp Fri Feb 19 22:42:37 2010 +0200 +++ b/idlehomescreen/xmluirendering/uiengine/src/xnrootdata.cpp Fri Mar 12 15:41:49 2010 +0200 @@ -38,6 +38,8 @@ #include "xnplugindata.h" #include "xnrootdata.h" +#include "debug.h" + // Constants const TInt KScheduleInterval( 2000000 ); @@ -468,6 +470,8 @@ // /* static */ TInt CXnRootData::RunLoadL( TAny* aAny ) { + __PRINTS( "*** CXnRootData::RunLoadL" ); + CXnRootData* self = static_cast< CXnRootData* >( aAny ); if ( self->iFlags.IsSet( EIsDispose ) ) @@ -541,6 +545,8 @@ } } + __PRINTS( "*** CXnRootData::RunLoadL - done" ); + return KErrNone; } @@ -571,6 +577,8 @@ // /* static */ TInt CXnRootData::RunDestroyL( TAny* aAny ) { + __PRINTS( "*** CXnRootData::RunDestroyL" ); + CXnRootData* self = static_cast< CXnRootData* >( aAny ); if( self->iFlags.IsSet( EIsDispose ) ) @@ -628,6 +636,8 @@ } } + __PRINTS( "*** CXnRootData::RunDestroyL - done" ); + return KErrNone; }