Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCurtis D'Entremont2006-12-29 16:17:07 +0000
committerCurtis D'Entremont2006-12-29 16:17:07 +0000
commita1bd8aad27d874d739fd2061e88f4b75cf7de18e (patch)
treeeb2a11dff04affb9b3da2e7ef5eb47716c32ab25 /org.eclipse.ui.intro.universal
parent7cc4040fccb9bca2fe856618344b6bbb512ac49f (diff)
downloadeclipse.platform.ua-a1bd8aad27d874d739fd2061e88f4b75cf7de18e.tar.gz
eclipse.platform.ua-a1bd8aad27d874d739fd2061e88f4b75cf7de18e.tar.xz
eclipse.platform.ua-a1bd8aad27d874d739fd2061e88f4b75cf7de18e.zip
157096 should adopt ICU Collator and use new APIs on StructuredViewer
Diffstat (limited to 'org.eclipse.ui.intro.universal')
-rw-r--r--org.eclipse.ui.intro.universal/src/org/eclipse/ui/internal/intro/universal/WelcomeCustomizationPreferencePage.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.ui.intro.universal/src/org/eclipse/ui/internal/intro/universal/WelcomeCustomizationPreferencePage.java b/org.eclipse.ui.intro.universal/src/org/eclipse/ui/internal/intro/universal/WelcomeCustomizationPreferencePage.java
index 952122edf..323b142c7 100644
--- a/org.eclipse.ui.intro.universal/src/org/eclipse/ui/internal/intro/universal/WelcomeCustomizationPreferencePage.java
+++ b/org.eclipse.ui.intro.universal/src/org/eclipse/ui/internal/intro/universal/WelcomeCustomizationPreferencePage.java
@@ -44,8 +44,8 @@ import org.eclipse.jface.viewers.SelectionChangedEvent;
import org.eclipse.jface.viewers.StructuredSelection;
import org.eclipse.jface.viewers.TableViewer;
import org.eclipse.jface.viewers.Viewer;
+import org.eclipse.jface.viewers.ViewerComparator;
import org.eclipse.jface.viewers.ViewerDropAdapter;
-import org.eclipse.jface.viewers.ViewerSorter;
import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.BusyIndicator;
import org.eclipse.swt.dnd.DND;
@@ -532,7 +532,7 @@ public class WelcomeCustomizationPreferencePage extends PreferencePage implement
label = new Label(pageContainer, SWT.NULL);
label.setText(Messages.WelcomeCustomizationPreferencePage_right);
available = createTableViewer(pageContainer, "hidden"); //$NON-NLS-1$
- available.setSorter(new ViewerSorter());
+ available.setComparator(new ViewerComparator());
gd = new GridData(GridData.FILL_HORIZONTAL | GridData.VERTICAL_ALIGN_FILL);
gd.verticalSpan = 2;
gd.widthHint = 100;

Back to the top