comparison dwt/widgets/FileDialog.d @ 271:d472fae79005

Fix: compile errors
author Frank Benoit <benoit@tionex.de>
date Sun, 06 Jul 2008 15:41:30 +0200
parents 07d9ed8927b6
children 9d67c3170a58
comparison
equal deleted inserted replaced
270:58ef057b3e9d 271:d472fae79005
20 import dwt.widgets.Dialog; 20 import dwt.widgets.Dialog;
21 import dwt.widgets.Shell; 21 import dwt.widgets.Shell;
22 import dwt.widgets.Display; 22 import dwt.widgets.Display;
23 import dwt.dwthelper.utils; 23 import dwt.dwthelper.utils;
24 24
25 version(TANGOSVN) 25 version(TANGOSVN) {
26 static import tango.io.model.IFile; 26 static import tango.io.model.IFile;
27 } 27 }
28 else{ 28 else{
29 static import tango.io.FileConst; 29 static import tango.io.FileConst;
30 } 30 }
59 String[] fileNames; 59 String[] fileNames;
60 String fullPath = ""; 60 String fullPath = "";
61 int filterIndex = -1; 61 int filterIndex = -1;
62 bool overwrite = false; 62 bool overwrite = false;
63 GtkWidget* handle; 63 GtkWidget* handle;
64 version(TANGOSVN) 64 version(TANGOSVN) {
65 static final char SEPARATOR = tango.io.model.IFile.FileConst.PathSeparatorChar; 65 static final char SEPARATOR = tango.io.model.IFile.FileConst.PathSeparatorChar;
66 } 66 }
67 else{ 67 else{
68 static final char SEPARATOR = tango.io.FileConst.FileConst.PathSeparatorChar; 68 static final char SEPARATOR = tango.io.FileConst.FileConst.PathSeparatorChar;
69 } 69 }