summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2013-12-17 16:59:08 +0100
committerEike Rathke <erack@redhat.com>2013-12-20 03:50:38 +0100
commit6819625cecfed1aec1a176f442019d2e7013df6e (patch)
tree174bc4fc43eed34eb215aea8437ad7f466d8b01b /xmloff
parentbe7fea04f4c9218dc40bedc95e9496dcac1d1da7 (diff)
reordered member variables for 4 byte alignment
Change-Id: Iaae7689d1ed3c74e261fcc90fa88b5521468e376 (cherry picked from commit dd902b8e256867b5d5fed06b52995f14d969f67d)
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/style/xmlprmap.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/source/style/xmlprmap.cxx b/xmloff/source/style/xmlprmap.cxx
index b74e4f2b5292..45934c3cb9a4 100644
--- a/xmloff/source/style/xmlprmap.cxx
+++ b/xmloff/source/style/xmlprmap.cxx
@@ -39,8 +39,8 @@ XMLPropertySetMapperEntry_Impl::XMLPropertySetMapperEntry_Impl(
sXMLAttributeName( GetXMLToken(rMapEntry.meXMLName) ),
sAPIPropertyName( OUString(rMapEntry.msApiName, rMapEntry.nApiNameLength,
RTL_TEXTENCODING_ASCII_US ) ),
- nXMLNameSpace( rMapEntry.mnNameSpace ),
nType( rMapEntry.mnType ),
+ nXMLNameSpace( rMapEntry.mnNameSpace ),
nContextId( rMapEntry.mnContextId ),
nEarliestODFVersionForExport( rMapEntry.mnEarliestODFVersionForExport ),
pHdl( rFactory->GetPropertyHandler( rMapEntry.mnType & MID_FLAG_MASK ) )
@@ -51,8 +51,8 @@ XMLPropertySetMapperEntry_Impl::XMLPropertySetMapperEntry_Impl(
const XMLPropertySetMapperEntry_Impl& rEntry ) :
sXMLAttributeName( rEntry.sXMLAttributeName),
sAPIPropertyName( rEntry.sAPIPropertyName),
- nXMLNameSpace( rEntry.nXMLNameSpace),
nType( rEntry.nType),
+ nXMLNameSpace( rEntry.nXMLNameSpace),
nContextId( rEntry.nContextId),
nEarliestODFVersionForExport( rEntry.nEarliestODFVersionForExport ),
pHdl( rEntry.pHdl)