changeset 164:de96284b35d8

add cancel
author Frank Benoit <benoit@tionex.de>
date Mon, 08 Sep 2008 01:36:47 +0200
parents 8df1d4193877
children 20cdc983a411
files dwtx/dwtxhelper/TimerTask.d
diffstat 1 files changed, 5 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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();