Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] Patch for bug no 99818


Hi,

Proposed patch for bug no 99818 is attached.


Thanks,
Ravi
Extn: 2751
Mobile:9886432301
Index: src/org/eclipse/cdt/managedbuilder/ui/properties/FileListControl.java
===================================================================
RCS file: /home/tools/org.eclipse.cdt-build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/properties/FileListControl.java,v
retrieving revision 1.14
diff -u -r1.14 FileListControl.java
--- src/org/eclipse/cdt/managedbuilder/ui/properties/FileListControl.java	5 May 2006 11:05:33 -0000	1.14
+++ src/org/eclipse/cdt/managedbuilder/ui/properties/FileListControl.java	14 Jun 2006 11:40:38 -0000
@@ -239,7 +239,8 @@
 						String result;
 						switch (type) {
 							case IOption.BROWSE_DIR :
-								DirectoryDialog dialog = new DirectoryDialog(getParentShell(), SWT.OPEN);
+								DirectoryDialog dialog = new DirectoryDialog(getParentShell(), 
+										SWT.OPEN|SWT.APPLICATION_MODAL);
 								currentName = getText().getText();
 								if(currentName != null && currentName.trim().length() != 0) {
 									dialog.setFilterPath(currentName);

Back to the top