diff options
author | Frank Schoenheit [fs] <frank.schoenheit@sun.com> | 2010-02-04 14:13:58 +0100 |
---|---|---|
committer | Frank Schoenheit [fs] <frank.schoenheit@sun.com> | 2010-02-04 14:13:58 +0100 |
commit | b691607b3bda98cee1bb923ccf59cb248bf9cb25 (patch) | |
tree | d19772494e16161e97add3c4194339dca2a4c97e /wizards | |
parent | 2176aee8e22caf0396c1b3b544a3549a0a417a8f (diff) |
autorecovery: post-rebase build problems solved
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/com/sun/star/wizards/query/Finalizer.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/wizards/com/sun/star/wizards/query/Finalizer.java b/wizards/com/sun/star/wizards/query/Finalizer.java index 083669192bab..71fddc422d6a 100644 --- a/wizards/com/sun/star/wizards/query/Finalizer.java +++ b/wizards/com/sun/star/wizards/query/Finalizer.java @@ -131,8 +131,9 @@ public class Finalizer public void changeTitle() { final String TitleName = m_aTxtTitle.getText(); - CurUnoDialog.enableFinishButton(!"".equals(TitleName)); + m_queryWizard.enableFinishButton( TitleName.length() > 0 ); } + /* TODO: The title textbox always has to be updated when a new Table has been selected if it is clear that the user has not made any input meanwhile */ |