# HG changeset patch # User Frank Benoit # Date 1221442930 -7200 # Node ID 1470d66733fa4b7efd104b66f6788021c4e7f210 # Parent 21c77bcb78873fb3a81c0624c60b64bff1033b85 update TANGOSVN diff -r 21c77bcb7887 -r 1470d66733fa dwtx/dwtxhelper/Timer.d --- a/dwtx/dwtxhelper/Timer.d Fri Sep 12 18:50:33 2008 +0200 +++ b/dwtx/dwtxhelper/Timer.d Mon Sep 15 03:42:10 2008 +0200 @@ -86,7 +86,11 @@ } void scheduleAtFixedRate(TimerTask task, long delay, long period){ assert( task ); + version(TANGOSVN){ + task.executionTime = Clock.now + TimeSpan.fromMillis(delay); + } else { task.executionTime = Clock.now + TimeSpan.millis(delay); + } task.timer = this; synchronized(mutex){ int index = 0; diff -r 21c77bcb7887 -r 1470d66733fa dwtx/jface/dialogs/DialogSettings.d --- a/dwtx/jface/dialogs/DialogSettings.d Fri Sep 12 18:50:33 2008 +0200 +++ b/dwtx/jface/dialogs/DialogSettings.d Mon Sep 15 03:42:10 2008 +0200 @@ -18,8 +18,6 @@ static import tango.text.xml.Document; static import tango.text.xml.SaxParser; static import tango.text.xml.PullParser; -static import tango.text.xml.XmlPrinter; - import dwt.dwthelper.utils; import dwtx.dwtxhelper.Collection; @@ -66,7 +64,6 @@ public class DialogSettings : IDialogSettings { alias tango.text.xml.Document.Document!(char) Document; alias tango.text.xml.Document.Document!(char).Node Element; - alias tango.text.xml.XmlPrinter.XmlPrinter!(char) XmlPrinter; // The name of the DialogSettings. private String name;