diff options
Diffstat (limited to 'sc/source/ui/dbgui/dbnamdlg.cxx')
-rw-r--r-- | sc/source/ui/dbgui/dbnamdlg.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sc/source/ui/dbgui/dbnamdlg.cxx b/sc/source/ui/dbgui/dbnamdlg.cxx index 452e0dedcfad..24a1fcefd8d9 100644 --- a/sc/source/ui/dbgui/dbnamdlg.cxx +++ b/sc/source/ui/dbgui/dbnamdlg.cxx @@ -595,13 +595,13 @@ IMPL_LINK_NOARG(ScDbNameDlg, RemoveBtnHdl) IMPL_LINK_NOARG(ScDbNameDlg, NameModifyHdl) { - String theName = aEdName.GetText(); + OUString theName = aEdName.GetText(); sal_Bool bNameFound = (COMBOBOX_ENTRY_NOTFOUND != aEdName.GetEntryPos( theName )); - if ( theName.Len() == 0 ) + if ( theName.isEmpty() ) { - if ( aBtnAdd.GetText() != aStrAdd ) + if ( aBtnAdd.GetText() != OUString(aStrAdd) ) aBtnAdd.SetText( aStrAdd ); aBtnAdd .Disable(); aBtnRemove .Disable(); @@ -624,7 +624,7 @@ IMPL_LINK_NOARG(ScDbNameDlg, NameModifyHdl) { if ( bNameFound ) { - if ( aBtnAdd.GetText() != aStrModify ) + if ( aBtnAdd.GetText() != OUString(aStrModify) ) aBtnAdd.SetText( aStrModify ); if(!bSaved) @@ -636,13 +636,13 @@ IMPL_LINK_NOARG(ScDbNameDlg, NameModifyHdl) } else { - if ( aBtnAdd.GetText() != aStrAdd ) + if ( aBtnAdd.GetText() != OUString(aStrAdd) ) aBtnAdd.SetText( aStrAdd ); bSaved=false; pSaveObj->Restore(); - if ( aEdAssign.GetText().Len() > 0 ) + if ( !aEdAssign.GetText().isEmpty() ) { aBtnAdd.Enable(); aBtnHeader.Enable(); |