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:
parent
aa8ea9cdff
commit
759e5803c5
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue