Changeset 238:380bad9f6852 for dwt/internal/BidiUtil.d
- Timestamp:
- 05/04/08 18:42:55 (4 years ago)
- Files:
-
- dwt/internal/BidiUtil.d (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/internal/BidiUtil.d
r108 r238 1 /*******************************************************************************1 /******************************************************************************* 2 2 * Copyright (c) 2000, 2004 IBM Corporation and others. 3 3 * All rights reserved. This program and the accompanying materials … … 12 12 *******************************************************************************/ 13 13 module dwt.internal.BidiUtil; 14 15 import dwt.dwthelper.utils; 14 16 15 17 import dwt.graphics.GC; … … 77 79 * 78 80 */ 79 public static void getOrderInfo(GC gc, char[]text, int[] order, byte[] classBuffer, int flags, int [] offsets) {81 public static void getOrderInfo(GC gc, String text, int[] order, byte[] classBuffer, int flags, int [] offsets) { 80 82 } 81 83 /* … … 83 85 * 84 86 */ 85 public static char[] getRenderInfo(GC gc, char[]text, int[] order, byte[] classBuffer, int[] dx, int flags, int[] offsets) {87 public static char[] getRenderInfo(GC gc, String text, int[] order, byte[] classBuffer, int[] dx, int flags, int[] offsets) { 86 88 return null; 87 89 }
