comparison org.eclipse.swt.gtk.linux.x86/src/org/eclipse/swt/internal/image/WinBMPFileFormat.d @ 49:7a2dd761a8b2

more work until dmd 2.026 linux segfaults.
author Frank Benoit <benoit@tionex.de>
date Fri, 27 Mar 2009 12:59:54 +0100
parents ddbfe84d86df
children
comparison
equal deleted inserted replaced
48:ddbfe84d86df 49:7a2dd761a8b2
21 import java.lang.all; 21 import java.lang.all;
22 22
23 23
24 final class WinBMPFileFormat : FileFormat { 24 final class WinBMPFileFormat : FileFormat {
25 25
26 static final int BMPFileHeaderSize = 14; 26 static const int BMPFileHeaderSize = 14;
27 static final int BMPHeaderFixedSize = 40; 27 static const int BMPHeaderFixedSize = 40;
28 int importantColors; 28 int importantColors;
29 Point pelsPerMeter; 29 Point pelsPerMeter;
30 30
31 public this(){ 31 public this(){
32 pelsPerMeter = new Point(0, 0); 32 pelsPerMeter = new Point(0, 0);