diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2013-03-09 21:47:17 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2013-03-09 21:47:31 +0100 |
commit | 6dddefc6e7ff6dc5cde46dde069ba1d7db4ac34b (patch) | |
tree | 7dafa2c2f9ac052a8b371f70c267c5c847dd2c5a /dbaccess/source/ui/app/AppController.cxx | |
parent | d9a3752143027bbf0d9383074fd378631309a3b0 (diff) |
fdo#43460: use isEmpty()
Change-Id: Ia768e684d3cf255239c04d024b35488830cc9fe6
Diffstat (limited to 'dbaccess/source/ui/app/AppController.cxx')
-rw-r--r-- | dbaccess/source/ui/app/AppController.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dbaccess/source/ui/app/AppController.cxx b/dbaccess/source/ui/app/AppController.cxx index ef62c6ad5165..0880194a6c62 100644 --- a/dbaccess/source/ui/app/AppController.cxx +++ b/dbaccess/source/ui/app/AppController.cxx @@ -924,12 +924,12 @@ FeatureState OApplicationController::GetState(sal_uInt16 _nId) const m_aTypeCollection.extractHostNamePort( sURL, sDatabaseName, sHostName, nPortNumber ); - if ( !sDatabaseName.getLength() ) + if ( sDatabaseName.isEmpty() ) sDatabaseName = m_aTypeCollection.cutPrefix( sURL ); if ( m_aTypeCollection.isFileSystemBased(sURL) ) { sDatabaseName = SvtPathOptions().SubstituteVariable( sDatabaseName ); - if ( sDatabaseName.getLength() ) + if ( !sDatabaseName.isEmpty() ) { ::svt::OFileNotation aFileNotation(sDatabaseName); // set this decoded URL as text @@ -937,7 +937,7 @@ FeatureState OApplicationController::GetState(sal_uInt16 _nId) const } } - if ( sDatabaseName.getLength() == 0 ) + if ( sDatabaseName.isEmpty() ) sDatabaseName = m_aTypeCollection.getTypeDisplayName( sURL ); aReturn.sTitle = sDatabaseName; @@ -1729,7 +1729,7 @@ sal_Bool OApplicationController::onContainerSelect(ElementType _eType) xLayoutManager->lock(); xLayoutManager->destroyElement( sDestroyToolbar ); - if ( sToolbar.getLength() ) + if ( !sToolbar.isEmpty() ) { xLayoutManager->createElement( sToolbar ); xLayoutManager->requestElement( sToolbar ); |