Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpschonbac2008-02-12 23:54:15 +0000
committerpschonbac2008-02-12 23:54:15 +0000
commit3c81ed8385dc7769bef753e9bfed174af7ed772c (patch)
tree1d4bebcecf1804a8ac93282a636408d2c58d9788
parent58dfa0be0c8ce678ff5c80c53fc7a549a2348936 (diff)
downloadorg.eclipse.xpand-3c81ed8385dc7769bef753e9bfed174af7ed772c.tar.gz
org.eclipse.xpand-3c81ed8385dc7769bef753e9bfed174af7ed772c.tar.xz
org.eclipse.xpand-3c81ed8385dc7769bef753e9bfed174af7ed772c.zip
RESOLVED - bug 215441: [Xtend Editor] Wrong sorting of private create extensions in the outline view
https://bugs.eclipse.org/bugs/show_bug.cgi?id=215441
-rw-r--r--plugins/org.eclipse.xtend.ui/src/org/eclipse/xtend/ui/editor/outline/XtendContentOutlinePage.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.xtend.ui/src/org/eclipse/xtend/ui/editor/outline/XtendContentOutlinePage.java b/plugins/org.eclipse.xtend.ui/src/org/eclipse/xtend/ui/editor/outline/XtendContentOutlinePage.java
index b061f7e3..3e14df26 100644
--- a/plugins/org.eclipse.xtend.ui/src/org/eclipse/xtend/ui/editor/outline/XtendContentOutlinePage.java
+++ b/plugins/org.eclipse.xtend.ui/src/org/eclipse/xtend/ui/editor/outline/XtendContentOutlinePage.java
@@ -28,8 +28,8 @@ import org.eclipse.xtend.ui.core.IXtendResource;
public class XtendContentOutlinePage extends AbstractExtXptContentOutlinePage {
- public static final int PRIVATE_CREATE_EXTENSION = 2,
- PRIVATE_EXTENSION = 3, CREATE_EXTENSION = 4, EXTENSION = 5;
+ public static final int PRIVATE_CREATE_EXTENSION = 3,
+ PRIVATE_EXTENSION = 4, CREATE_EXTENSION = 5, EXTENSION = 6;
public XtendContentOutlinePage(AbstractXtendXpandEditor editor) {
super(editor);

Back to the top