diff -r 2dac0fdba72b -r 191387a8b767 photosgallery/slideshow/utils/shwcallback.h --- a/photosgallery/slideshow/utils/shwcallback.h Wed Apr 14 15:57:24 2010 +0300 +++ b/photosgallery/slideshow/utils/shwcallback.h Tue Apr 27 16:37:53 2010 +0300 @@ -26,10 +26,10 @@ * Helper class to construct a TCallBack from any * public non static TInt (*method)() of a class * Usage: - * TShwCallBack< %ClassName%, %MethodName% >( + * TShwCallBack< %ClassName%, %&ClassName::%MethodName% >( * %ClassPointer% ) * Example: - * TShwCallBack< CShwEngineImpl, DoStartL >( + * TShwCallBack< CShwEngineImpl, &CShwEngineImpl::DoStartL >( * this ); */ template< class Object, TInt (Object::*Method)() >