1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-01 06:05:24 +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:
* 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);
}
}