diff options
author | Jelle van der Waa <jelle@vdwaa.nl> | 2013-06-22 12:52:31 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-06-24 21:44:24 +0000 |
commit | 51daa4de4fbb86903aeb9cdfefbb089e8d00c001 (patch) | |
tree | 760a9c2cf7a84714e76cfc759cafa72cbdcc07d1 /sd | |
parent | 7b692924a83937b8fab3215fcca154d1abd4a6c8 (diff) |
fdo#43460 sd,rsc,ucb,sdext: use isEmpty()
Change-Id: I7a7a77c26b74078f7fc160fbaa1c8d4e912b844e
Reviewed-on: https://gerrit.libreoffice.org/4442
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/filter/ppt/pptinanimations.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/filter/ppt/pptinanimations.cxx b/sd/source/filter/ppt/pptinanimations.cxx index 75b426dc1435..a59b7cb74477 100644 --- a/sd/source/filter/ppt/pptinanimations.cxx +++ b/sd/source/filter/ppt/pptinanimations.cxx @@ -2555,7 +2555,7 @@ bool AnimationImporter::importAttributeNamesContainer( const Atom* pAtom, OUStri OUString aName; if( aAny >>= aName ) { - if( aNames.getLength() ) + if( !aNames.isEmpty() ) aNames.append( (sal_Unicode)';' ); aNames.append( aName ); |