From 759e5803c5dbe37a62a8689039ee0cdd9625a8c2 Mon Sep 17 00:00:00 2001 From: Vivian Kong Date: Mon, 2 Jun 2008 15:31:12 +0000 Subject: [PATCH] fix for bug 234961 --- .../refactoring/extractfunction/ExtractFunctionInputPage.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); } }