diff options
Diffstat (limited to 'store')
-rw-r--r-- | store/source/storbase.hxx | 4 | ||||
-rw-r--r-- | store/source/stortree.hxx | 5 |
2 files changed, 4 insertions, 5 deletions
diff --git a/store/source/storbase.hxx b/store/source/storbase.hxx index db98c3e6e1c9..3cc2bc54a6e7 100644 --- a/store/source/storbase.hxx +++ b/store/source/storbase.hxx @@ -174,9 +174,9 @@ struct OStorePageGuard /** Construction. */ - explicit OStorePageGuard (sal_uInt32 nMagic = 0, sal_uInt32 nCRC32 = 0) + explicit OStorePageGuard (sal_uInt32 nMagic = 0) : m_nMagic (store::htonl(nMagic)), - m_nCRC32 (store::htonl(nCRC32)) + m_nCRC32 (store::htonl(0)) {} void swap (OStorePageGuard & rhs) diff --git a/store/source/stortree.hxx b/store/source/stortree.hxx index 94e61a11bd24..1146859aa1f4 100644 --- a/store/source/stortree.hxx +++ b/store/source/stortree.hxx @@ -53,11 +53,10 @@ struct OStoreBTreeEntry */ explicit OStoreBTreeEntry ( K const & rKey = K(), - L const & rLink = L(), - sal_uInt32 nAttrib = 0) + L const & rLink = L()) : m_aKey (rKey), m_aLink (rLink), - m_nAttrib (store::htonl(nAttrib)) + m_nAttrib (store::htonl(0)) {} OStoreBTreeEntry (const OStoreBTreeEntry & rhs) |