1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-30 20:35:38 +02:00

fix for bug 234961

This commit is contained in:
Vivian Kong 2008-06-02 15:31:12 +00:00
parent aa8ea9cdff
commit 759e5803c5

View file

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