comparison dwtx/jface/text/source/ImageUtilities.d @ 145:02cd5f1224d3

...
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 22:31:00 +0200
parents c4fb132a086c
children c3583c6ec027
comparison
equal deleted inserted replaced
144:16a71f577815 145:02cd5f1224d3
151 * @param gc the drawing GC 151 * @param gc the drawing GC
152 * @param canvas the canvas on which to draw 152 * @param canvas the canvas on which to draw
153 * @param r the clipping rectangle 153 * @param r the clipping rectangle
154 * @param align the alignment of the image to be drawn 154 * @param align the alignment of the image to be drawn
155 */ 155 */
156 public static void drawImage(Image image, GC gc, Canvas canvas, Rectangle r, int align) { 156 public static void drawImage(Image image, GC gc, Canvas canvas, Rectangle r, int align_) {
157 drawImage(image, gc, canvas, r, align, DWT.CENTER); 157 drawImage(image, gc, canvas, r, align_, DWT.CENTER);
158 } 158 }
159 } 159 }