Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cdt-patch] Patch to fix silly filter dialog.

Applied.

Thanks.

Thomas Fletcher wrote:
In my first step towards implementing the Working Set capability for the CView I was reminded of the visual inconsistancy of the Filters.. dialog. I've adjusted the
string and the title to be more consistant and meaningful.

Thanks,
 Thomas

---
Index: CView.java
===================================================================
RCS file: /home/tools/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/cview/CView.java,v
retrieving revision 1.13
diff -u -r1.13 CView.java
--- CView.java    6 Feb 2003 20:48:31 -0000    1.13
+++ CView.java    12 Feb 2003 21:51:17 -0000
@@ -520,7 +520,7 @@
        //sortByNameAction = new SortViewAction(this, false);
        //sortByTypeAction = new SortViewAction(this, true);

- patternFilterAction = new FilterSelectionAction(shell, this, "Filters.."); + patternFilterAction = new FilterSelectionAction(shell, this, "Filters..."); clibFilterAction = new ShowLibrariesAction(shell, this, "Show Referenced Libs");

        goIntoAction = new GoIntoAction(frameList);
Index: FilterSelectionAction.java
===================================================================
RCS file: /home/tools/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/cview/FilterSelectionAction.java,v
retrieving revision 1.3
diff -u -r1.3 FilterSelectionAction.java
--- FilterSelectionAction.java    29 Jan 2003 18:18:30 -0000    1.3
+++ FilterSelectionAction.java    12 Feb 2003 21:51:17 -0000
@@ -53,8 +53,8 @@
                cview.getViewer(),
                contentProvider,
                new LabelProvider(),
-                "Select Filter"); //$NON-NLS-1$
- + "Select the filters to apply (matching files will be hidden):"); //$NON-NLS-1$
+        dialog.setTitle("C/C++ File Filters");
dialog.setInitialSelections(contentProvider.getInitialSelections());
        dialog.open();
        if (dialog.getReturnCode() == Window.OK) {


_______________________________________________
cdt-patch mailing list
cdt-patch@xxxxxxxxxxx
http://dev.eclipse.org/mailman/listinfo/cdt-patch




Back to the top