summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2013-07-07 16:37:22 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2013-07-07 16:37:22 -0500
commitbe025c19f72d7ce0ac3410d17a09a94bd1eb72a1 (patch)
treeb19040b512b38af056bc299ff76672161c6ec568 /svl
parent009851223b5ced4ed2662af2e2ae81c0f9200e45 (diff)
OUString, missing conversion in a DBG case
Change-Id: I0643a642681bf25fe57de5607e9d7ddbf98af831
Diffstat (limited to 'svl')
-rw-r--r--svl/source/items/style.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/items/style.cxx b/svl/source/items/style.cxx
index 635480d42f93..72519f5cbd1a 100644
--- a/svl/source/items/style.cxx
+++ b/svl/source/items/style.cxx
@@ -765,7 +765,7 @@ void SfxStyleSheetBasePool::Insert( SfxStyleSheetBase* p )
SfxStyleSheetIterator aIter(this, p->GetFamily(), p->GetMask());
SfxStyleSheetBase* pOld = aIter.Find( p->GetName() );
OSL_ENSURE( !pOld, "svl::SfxStyleSheetBasePool::Insert(), StyleSheet already inserted" );
- if( p->GetParent().Len() )
+ if( !p->GetParent().isEmpty() )
{
pOld = aIter.Find( p->GetParent() );
OSL_ENSURE( pOld, "svl::SfxStyleSheetBasePool::Insert(), Parent not found!" );