diff --git a/plugins/org.jboss.tools.forge.ui.ext/src/org/jboss/tools/forge/ui/ext/wizards/ForgeWizard.java b/plugins/org.jboss.tools.forge.ui.ext/src/org/jboss/tools/forge/ui/ext/wizards/ForgeWizard.java index fefcb2640..7111a0765 100644 --- a/plugins/org.jboss.tools.forge.ui.ext/src/org/jboss/tools/forge/ui/ext/wizards/ForgeWizard.java +++ b/plugins/org.jboss.tools.forge.ui.ext/src/org/jboss/tools/forge/ui/ext/wizards/ForgeWizard.java @@ -100,7 +100,7 @@ public void run(IProgressMonitor monitor) if (result != null) { String message = result.getMessage(); if (message != null) { - ForgeUIPlugin.displayMessage("Forge Command", + ForgeUIPlugin.displayMessage(getWindowTitle(), message, NotificationType.INFO); } if (result instanceof Failed) { @@ -109,7 +109,7 @@ public void run(IProgressMonitor monitor) if (exception != null) { ForgeUIPlugin.log(exception); ForgeUIPlugin.displayMessage( - "Forge Command", String + getWindowTitle(), String .valueOf(exception .getMessage()), NotificationType.ERROR);