diff dwtx/jface/operation/IThreadListener.d @ 167:862b05e0334a

Add a wrapper for Thread
author Frank Benoit <benoit@tionex.de>
date Tue, 09 Sep 2008 15:59:16 +0200
parents 1a6747be662d
children
line wrap: on
line diff
--- a/dwtx/jface/operation/IThreadListener.d	Mon Sep 08 01:01:30 2008 +0200
+++ b/dwtx/jface/operation/IThreadListener.d	Tue Sep 09 15:59:16 2008 +0200
@@ -13,7 +13,7 @@
 module dwtx.jface.operation.IThreadListener;
 
 import dwt.dwthelper.utils;
-import tango.core.Thread;
+import dwtx.dwtxhelper.JThread;
 
 /**
  * A thread listener is an object that is interested in receiving notifications
@@ -29,5 +29,5 @@
      *
      * @param thread The new thread
      */
-    public void threadChange(Thread thread);
+    public void threadChange(JThread thread);
 }