diff dwt/dwthelper/System.d @ 150:f2e04420fd6c

reworked overrides and superclass aliases
author Frank Benoit <benoit@tionex.de>
date Thu, 31 Jan 2008 19:04:56 +0100
parents 2eb6d07425c9
children de2578a843a7
line wrap: on
line diff
--- a/dwt/dwthelper/System.d	Sun Jan 27 16:20:03 2008 +0100
+++ b/dwt/dwthelper/System.d	Thu Jan 31 19:04:56 2008 +0100
@@ -4,6 +4,7 @@
 module dwt.dwthelper.System;
 
 import tango.core.Exception;
+import tango.time.Clock;
 
 template SimpleType(T) {
     debug{
@@ -120,8 +121,7 @@
     alias SimpleType!(void*[]).arraycopy arraycopy;
 
     static long currentTimeMillis(){
-        //PORTING_FIXMe
-        return 0;
+        return Clock.now().ticks() / 10000;
     }
 
 }