Kaydet (Commit) dd902b8e authored tarafından Eike Rathke's avatar Eike Rathke

reordered member variables for 4 byte alignment

Change-Id: Iaae7689d1ed3c74e261fcc90fa88b5521468e376
üst 44ec9d80
...@@ -55,8 +55,8 @@ struct XMLPropertySetMapperEntry_Impl ...@@ -55,8 +55,8 @@ struct XMLPropertySetMapperEntry_Impl
{ {
OUString sXMLAttributeName; OUString sXMLAttributeName;
OUString sAPIPropertyName; OUString sAPIPropertyName;
sal_uInt16 nXMLNameSpace;
sal_Int32 nType; sal_Int32 nType;
sal_uInt16 nXMLNameSpace;
sal_Int16 nContextId; sal_Int16 nContextId;
SvtSaveOptions::ODFDefaultVersion nEarliestODFVersionForExport; SvtSaveOptions::ODFDefaultVersion nEarliestODFVersionForExport;
const XMLPropertyHandler *pHdl; const XMLPropertyHandler *pHdl;
......
...@@ -39,8 +39,8 @@ XMLPropertySetMapperEntry_Impl::XMLPropertySetMapperEntry_Impl( ...@@ -39,8 +39,8 @@ XMLPropertySetMapperEntry_Impl::XMLPropertySetMapperEntry_Impl(
sXMLAttributeName( GetXMLToken(rMapEntry.meXMLName) ), sXMLAttributeName( GetXMLToken(rMapEntry.meXMLName) ),
sAPIPropertyName( OUString(rMapEntry.msApiName, rMapEntry.nApiNameLength, sAPIPropertyName( OUString(rMapEntry.msApiName, rMapEntry.nApiNameLength,
RTL_TEXTENCODING_ASCII_US ) ), RTL_TEXTENCODING_ASCII_US ) ),
nXMLNameSpace( rMapEntry.mnNameSpace ),
nType( rMapEntry.mnType ), nType( rMapEntry.mnType ),
nXMLNameSpace( rMapEntry.mnNameSpace ),
nContextId( rMapEntry.mnContextId ), nContextId( rMapEntry.mnContextId ),
nEarliestODFVersionForExport( rMapEntry.mnEarliestODFVersionForExport ), nEarliestODFVersionForExport( rMapEntry.mnEarliestODFVersionForExport ),
pHdl( rFactory->GetPropertyHandler( rMapEntry.mnType & MID_FLAG_MASK ) ) pHdl( rFactory->GetPropertyHandler( rMapEntry.mnType & MID_FLAG_MASK ) )
...@@ -51,8 +51,8 @@ XMLPropertySetMapperEntry_Impl::XMLPropertySetMapperEntry_Impl( ...@@ -51,8 +51,8 @@ XMLPropertySetMapperEntry_Impl::XMLPropertySetMapperEntry_Impl(
const XMLPropertySetMapperEntry_Impl& rEntry ) : const XMLPropertySetMapperEntry_Impl& rEntry ) :
sXMLAttributeName( rEntry.sXMLAttributeName), sXMLAttributeName( rEntry.sXMLAttributeName),
sAPIPropertyName( rEntry.sAPIPropertyName), sAPIPropertyName( rEntry.sAPIPropertyName),
nXMLNameSpace( rEntry.nXMLNameSpace),
nType( rEntry.nType), nType( rEntry.nType),
nXMLNameSpace( rEntry.nXMLNameSpace),
nContextId( rEntry.nContextId), nContextId( rEntry.nContextId),
nEarliestODFVersionForExport( rEntry.nEarliestODFVersionForExport ), nEarliestODFVersionForExport( rEntry.nEarliestODFVersionForExport ),
pHdl( rEntry.pHdl) pHdl( rEntry.pHdl)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment