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