diff dwt/internal/BidiUtil.d @ 240:ce446666f5a2

Update to SWT 3.4M7
author Frank Benoit <benoit@tionex.de>
date Mon, 12 May 2008 19:13:01 +0200
parents 380bad9f6852
children c0d810de7093
line wrap: on
line diff
--- a/dwt/internal/BidiUtil.d	Mon May 12 15:36:37 2008 +0200
+++ b/dwt/internal/BidiUtil.d	Mon May 12 19:13:01 2008 +0200
@@ -15,8 +15,9 @@
 import dwt.dwthelper.utils;
 
 import dwt.graphics.GC;
+import dwt.widgets.Control;
+import dwt.dwthelper.Runnable;
 import dwt.internal.gtk.OS;
-import dwt.dwthelper.Runnable;
 
 /*
  * This class is supplied so that the StyledText code that supports bidi text (supported
@@ -49,6 +50,8 @@
  */
 public static void addLanguageListener(GtkWidget* hwnd, Runnable runnable) {
 }
+public static void addLanguageListener (Control control, Runnable runnable) {
+}
 /*
  * Not implemented.
  *
@@ -98,6 +101,8 @@
  */
 public static void removeLanguageListener(GtkWidget* hwnd) {
 }
+public static void removeLanguageListener (Control control) {
+}
 /*
  * Not implemented.
  */
@@ -109,4 +114,7 @@
 public static bool setOrientation(GtkWidget* hwnd, int orientation) {
     return false;
 }
+public static bool setOrientation (Control control, int orientation) {
+    return false;
 }
+}