diff options
-rw-r--r-- | idl/source/objects/types.cxx | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/idl/source/objects/types.cxx b/idl/source/objects/types.cxx index 368e06231883..391cdaba8c43 100644 --- a/idl/source/objects/types.cxx +++ b/idl/source/objects/types.cxx @@ -1870,15 +1870,13 @@ void SvMetaTypeEnum::ReadContextSvIdl( SvIdlDataBase & rBase, if( bOk ) { if( 0 == aEnumValueList.Count() ) + { // the first aPrefix = aEnumVal->GetName().getString(); + } else { - rtl::OString sCommonPrefix = getCommonSubPrefix(aPrefix, aEnumVal->GetName().getString()); - sal_uInt16 nPos = ByteString(aPrefix).Match( aEnumVal->GetName().getString() ); - if( nPos != aPrefix.getLength() && nPos != STRING_MATCH ) - aPrefix = aPrefix.copy(0, nPos); - assert(sCommonPrefix == aPrefix); + aPrefix = getCommonSubPrefix(aPrefix, aEnumVal->GetName().getString()); } aEnumValueList.Append( aEnumVal ); } |