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

Fix for bug 26401.

This commit is contained in:
Mikhail Khodjaiants 2002-11-19 16:42:04 +00:00
parent f0c0e2418a
commit 916a07026b
2 changed files with 5 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2002-11-19 Mikhail Khodjaiants
Fix for bug 26401.
* ExpressionDialog.java: Highlight the content of the expression field on intialization.
2002-11-18 Mikhail Khodjaiants
Fixes for the 'Add Global Variables' action's bugs.
The action disabled after 'Remove All'.

View file

@ -85,6 +85,7 @@ public class ExpressionDialog extends Dialog
private void initializeDataWidgets()
{
fTextExpression.setText( fExpression );
fTextExpression.selectAll();
setOkButtonState();
}