javauis/eswt_qt/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/FileDialog.java
changeset 87 1627c337e51e
parent 26 dc7c549001d5
equal deleted inserted replaced
80:d6dafc5d983f 87:1627c337e51e
    40 	String[] filterExtensions;
    40 	String[] filterExtensions;
    41 	String filterPath = "";
    41 	String filterPath = "";
    42 	String fileName;
    42 	String fileName;
    43 	String[] fileNames = new String[] {};
    43 	String[] fileNames = new String[] {};
    44 	int filterIndex = -1;
    44 	int filterIndex = -1;
    45 	static final char SEPARATOR = System.getProperty("file.separator")
    45 	static final char SEPARATOR = '/'; // See QDir::fromNativeSeparators
    46 			.charAt(0);
       
    47 	static final String EXTENSION_SEPARATOR = ";;";
    46 	static final String EXTENSION_SEPARATOR = ";;";
    48 	String dialogID;
    47 	String dialogID;
    49 	static int dialogCount;
    48 	static int dialogCount;
    50 
    49 
    51 	/**
    50 	/**