photosgallery/slideshow/utils/shwcallback.h
branchRCL_3
changeset 25 191387a8b767
parent 0 4e91876724a2
--- 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)() >