Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Schindl2011-04-26 14:30:20 +0000
committerThomas Schindl2011-04-26 14:30:20 +0000
commit9d9f6252924b3adcf789db51db8f6238347ca3f5 (patch)
tree8e6d5bd1acc2fe3a978656d5e29bbf911a5fc92f
parentb5ca1233b5ecaa4cfdaa0d2fa82d68c1af7a6c36 (diff)
downloadorg.eclipse.e4.tools-9d9f6252924b3adcf789db51db8f6238347ca3f5.tar.gz
org.eclipse.e4.tools-9d9f6252924b3adcf789db51db8f6238347ca3f5.tar.xz
org.eclipse.e4.tools-9d9f6252924b3adcf789db51db8f6238347ca3f5.zip
Bug 343850 - [Tooling] NPE in model editorv20110426-1500
-rw-r--r--bundles/org.eclipse.e4.tools.emf.ui/src/org/eclipse/e4/tools/emf/ui/internal/common/component/PartStackEditor.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.e4.tools.emf.ui/src/org/eclipse/e4/tools/emf/ui/internal/common/component/PartStackEditor.java b/bundles/org.eclipse.e4.tools.emf.ui/src/org/eclipse/e4/tools/emf/ui/internal/common/component/PartStackEditor.java
index b46d5432..ae737f26 100644
--- a/bundles/org.eclipse.e4.tools.emf.ui/src/org/eclipse/e4/tools/emf/ui/internal/common/component/PartStackEditor.java
+++ b/bundles/org.eclipse.e4.tools.emf.ui/src/org/eclipse/e4/tools/emf/ui/internal/common/component/PartStackEditor.java
@@ -272,7 +272,7 @@ public class PartStackEditor extends AbstractComponentEditor {
}
});
childrenDropDown.setInput(new EClass[] { BasicPackageImpl.Literals.PART, BasicPackageImpl.Literals.INPUT_PART, AdvancedPackageImpl.Literals.PLACEHOLDER });
- childrenDropDown.setSelection(new StructuredSelection(BasicPackageImpl.Literals.PART_SASH_CONTAINER));
+ childrenDropDown.setSelection(new StructuredSelection(BasicPackageImpl.Literals.PART));
b = new Button(buttonComp, SWT.PUSH | SWT.FLAT);
b.setImage(createImage(ResourceProvider.IMG_Obj16_table_add));

Back to the top