Graphics Drawing Interface EZLCD4 display using serial
Revision 2:d0ec618edc6d, committed 2011-03-15
- Comitter:
- wbasser
- Date:
- Tue Mar 15 15:11:24 2011 +0000
- Parent:
- 1:683ac9b65344
- Commit message:
- Version 00_00_03
Changed in this revision
| gdiezl4.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/gdiezl4.h Mon Mar 14 16:05:58 2011 +0000
+++ b/gdiezl4.h Tue Mar 15 15:11:24 2011 +0000
@@ -242,14 +242,14 @@
*
* @param bOffOn = state of the backlight
*/
- void attach( uint32_t (*function)(uint32_t) = 0) { m_pvFuncCallBack.attach(function); }
+ void attach( U32 ( *function )( U32 ) = 0) { m_pvFuncCallBack.attach( function ); }
/** backlight ontrol
*
* @param bOffOn = state of the backlight
*/
template<class T>
- void attach(T* item, uint32_t (T::*method)(uint32_t)) { m_pvFuncCallBack.attach(item, method); }
+ void attach( T* item, U32 ( T::*method )( U32 )) { m_pvFuncCallBack.attach( item, method ); }
};