Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Swanson2006-10-20 21:43:06 +0000
committerDarin Swanson2006-10-20 21:43:06 +0000
commit96e5103abe9606c375ed99f99f1ebf5e5c9de315 (patch)
tree61ef382c6668ba94ec2ce887480a7abe78aeff59 /org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/FavoritesDialog.java
parent0c618faad0b0bbe6307570a2ffb80023723861ef (diff)
downloadeclipse.platform.debug-96e5103abe9606c375ed99f99f1ebf5e5c9de315.tar.gz
eclipse.platform.debug-96e5103abe9606c375ed99f99f1ebf5e5c9de315.tar.xz
eclipse.platform.debug-96e5103abe9606c375ed99f99f1ebf5e5c9de315.zip
Bug 157090 - should adopt ICU Collator and use new APIs on StructuredViewer
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/FavoritesDialog.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/FavoritesDialog.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/FavoritesDialog.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/FavoritesDialog.java
index 919230d31..e64eb3ec6 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/FavoritesDialog.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/FavoritesDialog.java
@@ -51,7 +51,7 @@ import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.dialogs.ListSelectionDialog;
-import org.eclipse.ui.model.WorkbenchViewerSorter;
+import org.eclipse.ui.model.WorkbenchViewerComparator;
import com.ibm.icu.text.MessageFormat;
@@ -168,7 +168,7 @@ public class FavoritesDialog extends TrayDialog {
}
list.removeAll(getFavorites());
Object[] objs = list.toArray();
- new WorkbenchViewerSorter().sort(getFavoritesTable(), objs);
+ new WorkbenchViewerComparator().sort(getFavoritesTable(), objs);
return objs;
}

Back to the top