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:
parent
1f8b4f48a6
commit
92c3026143
2 changed files with 4 additions and 1 deletions
|
@ -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
|
2003-10-20 Hoda Amer
|
||||||
Fixed bug#44507 outline flickers with CDT1.2 RC0
|
Fixed bug#44507 outline flickers with CDT1.2 RC0
|
||||||
In CReconcilingStrategy, the outliner is asked to redraw only
|
In CReconcilingStrategy, the outliner is asked to redraw only
|
||||||
|
|
|
@ -365,7 +365,7 @@ public class NewClassWizardPage extends WizardPage implements Listener {
|
||||||
}
|
}
|
||||||
|
|
||||||
if(field == fBaseClassDialogField){
|
if(field == fBaseClassDialogField){
|
||||||
if(fBaseClassDialogField.getText().length() > 0)
|
if(fBaseClassDialogField.getText().length() >= 0)
|
||||||
{
|
{
|
||||||
fAccessButtons.setEnabled(true);
|
fAccessButtons.setEnabled(true);
|
||||||
fBaseClassStatus = baseClassNameChanged();
|
fBaseClassStatus = baseClassNameChanged();
|
||||||
|
|
Loading…
Add table
Reference in a new issue