diff options
author | Olivier Hallot <olivier.hallot@alta.org.br> | 2011-12-09 14:00:09 -0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2011-12-09 23:37:05 +0100 |
commit | f43311dfb77342f0d003bee5336215f92500f15c (patch) | |
tree | 7f5ef6154f07850add2eb3f169508319f7e11889 /accessibility/source/extended/accessibleiconchoicectrl.cxx | |
parent | 1d1f049859e080b403c743f7e0604bd72475a824 (diff) |
Fix for fdo43460, Part I, getLength to isEmpty
Part I
Modules
unoControl, accessibility and avmedia
Diffstat (limited to 'accessibility/source/extended/accessibleiconchoicectrl.cxx')
-rw-r--r-- | accessibility/source/extended/accessibleiconchoicectrl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accessibility/source/extended/accessibleiconchoicectrl.cxx b/accessibility/source/extended/accessibleiconchoicectrl.cxx index eb47993a15e4..c7894adbbb73 100644 --- a/accessibility/source/extended/accessibleiconchoicectrl.cxx +++ b/accessibility/source/extended/accessibleiconchoicectrl.cxx @@ -211,7 +211,7 @@ namespace accessibility ensureAlive(); ::rtl::OUString sName = getCtrl()->GetAccessibleName(); - if ( sName.getLength() == 0 ) + if ( sName.isEmpty() ) sName = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "IconChoiceControl" ) ); return sName; } |