diff options
Diffstat (limited to 'dbaccess/source/ui/control')
-rw-r--r-- | dbaccess/source/ui/control/dbtreelistbox.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dbaccess/source/ui/control/dbtreelistbox.cxx b/dbaccess/source/ui/control/dbtreelistbox.cxx index 6b9d3112bd9e..27cafea7bb8d 100644 --- a/dbaccess/source/ui/control/dbtreelistbox.cxx +++ b/dbaccess/source/ui/control/dbtreelistbox.cxx @@ -323,7 +323,7 @@ void DBTreeListBox::RequestHelp( const HelpEvent& rHEvt ) SvTreeListEntry* pEntry = GetEntry( aPos ); if( pEntry ) { - String sQuickHelpText; + OUString sQuickHelpText; if ( m_pActionListener->requestQuickHelp( pEntry, sQuickHelpText ) ) { Size aSize( GetOutputSizePixel().Width(), GetEntryHeight() ); @@ -408,7 +408,7 @@ sal_Bool DBTreeListBox::EditingEntry( SvTreeListEntry* pEntry, Selection& /*_aSe return m_aEditingHandler.Call(pEntry) != 0; } // ----------------------------------------------------------------------------- -sal_Bool DBTreeListBox::EditedEntry( SvTreeListEntry* pEntry, const rtl::OUString& rNewText ) +sal_Bool DBTreeListBox::EditedEntry( SvTreeListEntry* pEntry, const OUString& rNewText ) { DBTreeEditedEntry aEntry; aEntry.pEntry = pEntry; @@ -475,7 +475,7 @@ namespace } else { - ::rtl::OUString sCommandURL( _pPopup->GetItemCommand( nId ) ); + OUString sCommandURL( _pPopup->GetItemCommand( nId ) ); bool bEnabled = sCommandURL.isEmpty() ? _rController.isCommandEnabled( nId ) : _rController.isCommandEnabled( sCommandURL ); @@ -515,7 +515,7 @@ namespace // more things to preserve: // - the help command - ::rtl::OUString sHelpURL = _rMenu.GetHelpCommand( nId ); + OUString sHelpURL = _rMenu.GetHelpCommand( nId ); if ( !sHelpURL.isEmpty() ) _rMenu.SetHelpCommand( nCommandId, sHelpURL ); |