diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/refactoring/extractfunction/ExtractFunctionInputPage.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/refactoring/extractfunction/ExtractFunctionInputPage.java index 8cf1d542d13..81f588d2aac 100644 --- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/refactoring/extractfunction/ExtractFunctionInputPage.java +++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/refactoring/extractfunction/ExtractFunctionInputPage.java @@ -8,6 +8,7 @@ * * Contributors: * Institute for Software - initial API and implementation + * IBM Corporation *******************************************************************************/ package org.eclipse.cdt.internal.ui.refactoring.extractfunction; @@ -101,7 +102,7 @@ public class ExtractFunctionInputPage extends UserInputWizardPage { setPageComplete(true); } else{ - setErrorMessage(Messages.ExtractFunctionInputPage_CheckMethodName + result.getMessage()); + setErrorMessage(Messages.ExtractFunctionInputPage_CheckMethodName + " " + result.getMessage()); setPageComplete(false); } }