Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorytanguy2010-06-26 16:47:19 +0000
committerytanguy2010-06-26 16:47:19 +0000
commit23ea6106e72d39a60ea1426cc0499b9e4598a486 (patch)
treeed61e521e445f887b61e827e7d513e61eabe9bba /plugins/uml/org.eclipse.papyrus.diagram.statemachine
parent86afe4c67f98972294850e54ac2605a7c39d715b (diff)
downloadorg.eclipse.papyrus-23ea6106e72d39a60ea1426cc0499b9e4598a486.tar.gz
org.eclipse.papyrus-23ea6106e72d39a60ea1426cc0499b9e4598a486.tar.xz
org.eclipse.papyrus-23ea6106e72d39a60ea1426cc0499b9e4598a486.zip
NEW - bug 312472: [General] Inconsistency in default names of diagrams
https://bugs.eclipse.org/bugs/show_bug.cgi?id=312472
Diffstat (limited to 'plugins/uml/org.eclipse.papyrus.diagram.statemachine')
-rw-r--r--plugins/uml/org.eclipse.papyrus.diagram.statemachine/custom-src/org/eclipse/papyrus/diagram/statemachine/CreateStateMachineDiagramCommand.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/uml/org.eclipse.papyrus.diagram.statemachine/custom-src/org/eclipse/papyrus/diagram/statemachine/CreateStateMachineDiagramCommand.java b/plugins/uml/org.eclipse.papyrus.diagram.statemachine/custom-src/org/eclipse/papyrus/diagram/statemachine/CreateStateMachineDiagramCommand.java
index 5a2d1216c2c..5b82718f07d 100644
--- a/plugins/uml/org.eclipse.papyrus.diagram.statemachine/custom-src/org/eclipse/papyrus/diagram/statemachine/CreateStateMachineDiagramCommand.java
+++ b/plugins/uml/org.eclipse.papyrus.diagram.statemachine/custom-src/org/eclipse/papyrus/diagram/statemachine/CreateStateMachineDiagramCommand.java
@@ -26,14 +26,14 @@ import org.eclipse.papyrus.diagram.statemachine.part.UMLDiagramEditorPlugin;
* @author dumoulin
* @author <a href="mailto:jerome.benois@obeo.fr">Jerome Benois</a>
*/
-public class CreateStateMachineDiagramCommand extends AbstractPapyrusGmfCreateDiagramCommandHandler {
+public class CreateStateMachineDiagramCommand extends AbstractPapyrusGmfCreateDiagramCommandHandler {
/**
* {@inheritDoc}
*/
@Override
protected String getDefaultDiagramName() {
- return openDiagramNameDialog("StateMachineDiagram");
+ return openDiagramNameDialog("NewDiagram");
}
/**

Back to the top