diff options
Diffstat (limited to 'chart2/source/tools')
-rw-r--r-- | chart2/source/tools/ObjectIdentifier.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chart2/source/tools/ObjectIdentifier.cxx b/chart2/source/tools/ObjectIdentifier.cxx index 358385f059a3..8779f1dd9942 100644 --- a/chart2/source/tools/ObjectIdentifier.cxx +++ b/chart2/source/tools/ObjectIdentifier.cxx @@ -82,14 +82,14 @@ OUString lcl_createClassificationStringForType( ObjectType eObjectType } if( !rDragMethodServiceName.isEmpty() ) { - if( aRet.getLength() ) + if( !aRet.isEmpty() ) aRet.appendAscii(":"); aRet.append( m_aDragMethodEquals ); aRet.append( rDragMethodServiceName ); if( !rDragParameterString.isEmpty() ) { - if( aRet.getLength() ) + if( !aRet.isEmpty() ) aRet.appendAscii(":"); aRet.append( m_aDragParameterEquals ); aRet.append( rDragParameterString ); |