From 4dd25e370c210ffbb0790d884423f64918b16220 Mon Sep 17 00:00:00 2001 From: "nor..67" Date: Wed, 9 Nov 2011 13:46:35 +0000 Subject: [PATCH] - improve error dialog git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@8619 75d07b2b-3a1a-0410-a2c5-0572b91ccdca --- .../nodes/actions/impl/NewCustomControlWizardAction.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/jme3-core/src/com/jme3/gde/core/sceneexplorer/nodes/actions/impl/NewCustomControlWizardAction.java b/sdk/jme3-core/src/com/jme3/gde/core/sceneexplorer/nodes/actions/impl/NewCustomControlWizardAction.java index ed1414b32..08c27a8c8 100644 --- a/sdk/jme3-core/src/com/jme3/gde/core/sceneexplorer/nodes/actions/impl/NewCustomControlWizardAction.java +++ b/sdk/jme3-core/src/com/jme3/gde/core/sceneexplorer/nodes/actions/impl/NewCustomControlWizardAction.java @@ -117,7 +117,7 @@ public final class NewCustomControlWizardAction extends AbstractNewControlWizard DialogDisplayer.getDefault().notifyLater(new NotifyDescriptor.Message("Error instatiating class!")); } } else { - DialogDisplayer.getDefault().notifyLater(new NotifyDescriptor.Message("Cannot find class:\n" + className+ "\nMake sure the name is correct, also make sure\nyour projects classes are compiled, best enable\n 'Save on Compile' in the project preferences under 'build'")); + DialogDisplayer.getDefault().notifyLater(new NotifyDescriptor.Message("Cannot find class: " + className+ "\nMake sure the name is correct and the project is compiled,\nbest enable 'Save on Compile' in the project preferences.")); } return null; }