Update of /cvsroot/smartwin/SmartWin/include/smartwin/widgets
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv13806
Modified Files:
WidgetWindowBase.h
Log Message:
Mingw (3.4.2) doesn't like ::KillTimer( handle(), idx->first );
Index: WidgetWindowBase.h
===================================================================
RCS file: /cvsroot/smartwin/SmartWin/include/smartwin/widgets/WidgetWindowBase.h,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -d -r1.36 -r1.37
--- WidgetWindowBase.h 19 Jun 2007 01:13:17 -0000 1.36
+++ WidgetWindowBase.h 21 Jun 2007 01:26:33 -0000 1.37
@@ -421,7 +421,7 @@
typename ThisMessageMap::TupleCommandFunctionThis tfc= idx->second;
comInList= tfc.template get< 1 >();
if ( comInList->Name() == command.Name() ) {
- ::KillTimer( handle(), idx->first );
+ ::KillTimer( this->Widget::itsHandle, idx->first );
itsTimerMapThis.erase( idx->first );
return;
}
|