summaryrefslogtreecommitdiff
path: root/sw/source
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source')
-rw-r--r--sw/source/filter/ww8/ww8par2.cxx27
1 files changed, 11 insertions, 16 deletions
diff --git a/sw/source/filter/ww8/ww8par2.cxx b/sw/source/filter/ww8/ww8par2.cxx
index f3c154d19b10..3f7897e38a34 100644
--- a/sw/source/filter/ww8/ww8par2.cxx
+++ b/sw/source/filter/ww8/ww8par2.cxx
@@ -4229,35 +4229,30 @@ void WW8RStyle::ImportOldFormatStyles()
continue;
SwWW8StyInf &rSI = pIo->vColl[stc];
+ OUString sName;
+
if (nCount != 0xFF) // undefined style
{
- OUString sName;
- if (nCount == 0) // inbuilt style
- {
- ww::sti eSti = ww::GetCanonicalStiFromStc(stc);
- if (const sal_Char *pStr = GetEnglishNameFromSti(eSti))
- sName = OUString(pStr, strlen(pStr), RTL_TEXTENCODING_ASCII_US);
- else
- sName = "Unknown";
- }
- else // user style
+ if (nCount != 0) // user style
{
OString aTmp = read_uInt8s_ToOString(rSt, nCount);
nByteCount += aTmp.getLength();
sName = OStringToOUString(aTmp, eStructChrSet);
}
- rSI.SetOrgWWIdent(sName, stc);
rSI.bImported = true;
}
- else
+
+ if (sName.isEmpty())
{
ww::sti eSti = ww::GetCanonicalStiFromStc(stc);
if (const sal_Char *pStr = GetEnglishNameFromSti(eSti))
- {
- OUString sName = OUString(pStr, strlen(pStr), RTL_TEXTENCODING_ASCII_US);
- rSI.SetOrgWWIdent(sName, stc);
- }
+ sName = OUString(pStr, strlen(pStr), RTL_TEXTENCODING_ASCII_US);
}
+
+ if (sName.isEmpty())
+ sName = OUString("Unknown Style: ") + OUString::number(stc);
+
+ rSI.SetOrgWWIdent(sName, stc);
stcp++;
}