diff dwt/dwthelper/Runnable.d @ 10:30a762abda2a

Revert automatic changes from dwt/internal and dwt/dwthelper. Excluded dwt/internal/image and theme.
author Frank Benoit <benoit@tionex.de>
date Thu, 28 Aug 2008 12:31:10 +0200
parents e831403a80a9
children
line wrap: on
line diff
--- a/dwt/dwthelper/Runnable.d	Wed Aug 27 14:36:41 2008 +0200
+++ b/dwt/dwthelper/Runnable.d	Thu Aug 28 12:31:10 2008 +0200
@@ -15,8 +15,8 @@
 
 class _DgRunnableT(Dg,T...) : Runnable {
 
-    alias ParameterTupleOf!cast(Dg) DgArgs;
-    static assert( is(DgArgs == Tuple!cast(T)),
+    alias ParameterTupleOf!(Dg) DgArgs;
+    static assert( is(DgArgs == Tuple!(T)),
                 "Delegate args not correct" );
 
     Dg dg;
@@ -36,4 +36,4 @@
 
 _DgRunnableT!(Dg,T) dgRunnable(Dg,T...)( Dg dg, T args ){
     return new _DgRunnableT!(Dg,T)(dg,args);
-}
+}
\ No newline at end of file