Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVeronika Irvine2001-09-19 14:37:18 +0000
committerVeronika Irvine2001-09-19 14:37:18 +0000
commit0ac63b702e1ccbfed3e59f5e96f98fe2d4912ba1 (patch)
tree9272e23f12ebc4c128722f21c660ee9ae844a726 /bundles/org.eclipse.swt
parent17ebfc54acbcf63d3ee7854d691b38e0c154a23a (diff)
downloadeclipse.platform.swt-0ac63b702e1ccbfed3e59f5e96f98fe2d4912ba1.tar.gz
eclipse.platform.swt-0ac63b702e1ccbfed3e59f5e96f98fe2d4912ba1.tar.xz
eclipse.platform.swt-0ac63b702e1ccbfed3e59f5e96f98fe2d4912ba1.zip
*** empty log message ***
Diffstat (limited to 'bundles/org.eclipse.swt')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/internal/BidiText.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/internal/BidiText.java b/bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/internal/BidiText.java
index 986e6af2a9..30dfb7cb7d 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/internal/BidiText.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/internal/BidiText.java
@@ -48,6 +48,15 @@ public static void drawGlyphs(GC gc, byte[] renderBuffer, int[] renderDx, int x,
public static byte[] getRenderInfo(GC gc, String text, int[] order, byte[] classBuffer, int[] dx, int flags) {
return null;
}
+/* Not implemented. Returns null.
+ *
+ * gc, text & flags are input parameters
+ * classBuffer is input/output parameter
+ * order & dx are output parameters
+ */
+public static byte[] getRenderInfo(GC gc, String text, int[] order, byte[] classBuffer, int[] dx, int flags, int[] offsets) {
+ return null;
+}
/*
* Not implemented. Returns 0.
*/

Back to the top