diff options
author | Olivier Hallot <olivier.hallot@alta.org.br> | 2011-12-10 22:03:11 -0200 |
---|---|---|
committer | Ivan Timofeev <timofeev.i.s@gmail.com> | 2011-12-13 00:36:43 +0400 |
commit | 0eac98aa742e8e76ebb1af91b32bd02e04b2e20a (patch) | |
tree | d44b28e26f61342e8a05d9c2c52e9139a5a2258b /chart2/source/controller/main/ControllerCommandDispatch.cxx | |
parent | 187077c21bd73e22f35370ad8a475191614a398d (diff) |
Fix for fdo43460 Part V getLength to isEmpty
Part V
Module
chart2
Diffstat (limited to 'chart2/source/controller/main/ControllerCommandDispatch.cxx')
-rw-r--r-- | chart2/source/controller/main/ControllerCommandDispatch.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chart2/source/controller/main/ControllerCommandDispatch.cxx b/chart2/source/controller/main/ControllerCommandDispatch.cxx index 1a37a1ce75ab..c6dac76313cb 100644 --- a/chart2/source/controller/main/ControllerCommandDispatch.cxx +++ b/chart2/source/controller/main/ControllerCommandDispatch.cxx @@ -708,14 +708,14 @@ void ControllerCommandDispatch::fireStatusEvent( const Reference< frame::XStatusListener > & xSingleListener /* = 0 */ ) { bool bIsChartSelectorURL = rURL.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM(".uno:ChartElementSelector") ); - if( rURL.getLength() == 0 || bIsChartSelectorURL ) + if( rURL.isEmpty() || bIsChartSelectorURL ) { uno::Any aArg; aArg <<= m_xController; fireStatusEventForURL( C2U(".uno:ChartElementSelector"), aArg, true, xSingleListener ); } - if( rURL.getLength() == 0 ) + if( rURL.isEmpty() ) for( ::std::map< OUString, bool >::const_iterator aIt( m_aCommandAvailability.begin()); aIt != m_aCommandAvailability.end(); ++aIt ) fireStatusEventForURLImpl( aIt->first, xSingleListener ); @@ -724,7 +724,7 @@ void ControllerCommandDispatch::fireStatusEvent( // statusbar. Should be handled by base implementation // @todo: remove if Issue 68864 is fixed - if( rURL.getLength() == 0 || + if( rURL.isEmpty() || rURL.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM(".uno:StatusBarVisible"))) { bool bIsStatusBarVisible( lcl_isStatusBarVisible( m_xController )); |