Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/actions/wizard/NewActionPage1.java')
-rw-r--r--plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/actions/wizard/NewActionPage1.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/actions/wizard/NewActionPage1.java b/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/actions/wizard/NewActionPage1.java
index e6bb8a3cc6c..63a145c9d1a 100644
--- a/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/actions/wizard/NewActionPage1.java
+++ b/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/actions/wizard/NewActionPage1.java
@@ -154,7 +154,7 @@ public class NewActionPage1 extends WizardPage {
} catch (Exception ex) {
OseeLog.log(Activator.class, Level.SEVERE, ex);
}
- treeViewer.getViewer().setSorter(new AtsObjectNameSorter());
+ treeViewer.getViewer().setComparator(new AtsObjectNameSorter());
GridData gridData1 = new GridData(GridData.FILL_BOTH);
gridData1.heightHint = 400;
treeViewer.setLayoutData(gridData1);

Back to the top