1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

fixed bug # 68888

This commit is contained in:
David Inglis 2004-11-11 14:07:10 +00:00
parent d5cfd2a0af
commit d0408df257

View file

@ -259,6 +259,8 @@ public class MakeTargetDialog extends Dialog {
public void handleEvent(Event e) {
if (commandText.getText().equals("")) { //$NON-NLS-1$
fStatusLine.setErrorMessage(MakeUIPlugin.getResourceString("MakeTargetDialog.message.mustSpecifyBuildCommand")); //$NON-NLS-1$
} else {
fStatusLine.setErrorMessage(null); //$NON-NLS-1$
}
updateButtons();
}