photosgallery/slideshow/utils/shwcallback.h
branchCompilerCompatibility
changeset 16 0bc0ea26031e
parent 0 4e91876724a2
--- a/photosgallery/slideshow/utils/shwcallback.h	Sun Mar 28 16:36:22 2010 +0100
+++ b/photosgallery/slideshow/utils/shwcallback.h	Tue Apr 06 17:25:48 2010 +0100
@@ -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)() >