summaryrefslogtreecommitdiff
path: root/xmloff/source/style/xmlstyle.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/style/xmlstyle.cxx')
-rw-r--r--xmloff/source/style/xmlstyle.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/source/style/xmlstyle.cxx b/xmloff/source/style/xmlstyle.cxx
index 398832de1dc2..9f362ca19846 100644
--- a/xmloff/source/style/xmlstyle.cxx
+++ b/xmloff/source/style/xmlstyle.cxx
@@ -223,9 +223,9 @@ struct SvXMLStyleIndexCmp_Impl
{
sal_Int32 nRet;
- if( (sal_uInt16)r1.GetFamily() < (sal_uInt16)r2.GetFamily() )
+ if( r1.GetFamily() < r2.GetFamily() )
nRet = -1;
- else if( (sal_uInt16)r1.GetFamily() > (sal_uInt16)r2.GetFamily() )
+ else if( r1.GetFamily() > r2.GetFamily() )
nRet = 1;
else
nRet = r1.GetName().compareTo( r2.GetName() );