# HG changeset patch # User Frank Benoit # Date 1220830607 -7200 # Node ID de96284b35d818d2bfa701cc7e766297d596afac # Parent 8df1d41938770cfd1a2bb8148236741627561bbc add cancel diff -r 8df1d4193877 -r de96284b35d8 dwtx/dwtxhelper/TimerTask.d --- a/dwtx/dwtxhelper/TimerTask.d Sun Aug 17 02:05:20 2008 +0200 +++ b/dwtx/dwtxhelper/TimerTask.d Mon Sep 08 01:36:47 2008 +0200 @@ -1,6 +1,7 @@ module dwtx.dwtxhelper.TimerTask; import tango.time.Time; +import dwt.dwthelper.utils; import dwt.dwthelper.Runnable; import dwtx.dwtxhelper.Timer; @@ -9,8 +10,10 @@ package Time executionTime; package Timer timer; -// bool cancel(){ -// } + bool cancel(){ + implMissing( __FILE__, __LINE__ ); + return false; + } abstract void run();