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

Bug fixes for New Class Wizard

This commit is contained in:
Hoda Amer 2003-10-22 17:47:21 +00:00
parent 1f8b4f48a6
commit 92c3026143
2 changed files with 4 additions and 1 deletions

View file

@ -1,3 +1,6 @@
2003-10-22 Hoda Amer
Fixed bug#45115: New Class Wizard: Error in base class doesn't clear when ...
2003-10-20 Hoda Amer
Fixed bug#44507 outline flickers with CDT1.2 RC0
In CReconcilingStrategy, the outliner is asked to redraw only

View file

@ -365,7 +365,7 @@ public class NewClassWizardPage extends WizardPage implements Listener {
}
if(field == fBaseClassDialogField){
if(fBaseClassDialogField.getText().length() > 0)
if(fBaseClassDialogField.getText().length() >= 0)
{
fAccessButtons.setEnabled(true);
fBaseClassStatus = baseClassNameChanged();