diff dwt/internal/BidiUtil.d @ 128:07399639c0c8

Added DWT extension to dwt.widgets.MessageBox
author Jacob Carlborg <doob@me.com>
date Sat, 17 Jan 2009 16:26:49 +0100
parents d8635bb48c7c
children
line wrap: on
line diff
--- a/dwt/internal/BidiUtil.d	Fri Jan 16 23:36:08 2009 +0100
+++ b/dwt/internal/BidiUtil.d	Sat Jan 17 16:26:49 2009 +0100
@@ -13,11 +13,12 @@
  *******************************************************************************/
 module dwt.internal.BidiUtil;
 
-import dwt.dwthelper.Runnable;
 import dwt.dwthelper.utils;
 import dwt.graphics.GC;
 import dwt.widgets.Control;
 
+import objc = dwt.internal.objc.runtime;
+
 /*
  * This class is supplied so that the StyledText code that supports bidi text (supported
  * for win platforms) is not platform dependent.  Bidi text is not implemented on 
@@ -47,7 +48,7 @@
 /*
  * Not implemented.
  */
-public static void addLanguageListener(int /*long*/ hwnd, Runnable runnable) {
+public static void addLanguageListener(objc.id hwnd, Runnable runnable) {
 }
 public static void addLanguageListener (Control control, Runnable runnable) {
 }
@@ -98,7 +99,7 @@
 /*
  * Not implemented.
  */
-public static void removeLanguageListener(int /*long*/ hwnd) {
+public static void removeLanguageListener(objc.id hwnd) {
 }   
 public static void removeLanguageListener (Control control) {
 }
@@ -110,7 +111,7 @@
 /*
  * Not implemented.
  */
-public static boolean setOrientation(int /*long*/ hwnd, int orientation) {
+public static boolean setOrientation(objc.id hwnd, int orientation) {
     return false;
 }
 public static boolean setOrientation (Control control, int orientation) {