Kaydet (Commit) 18ef0c66 authored tarafından Noel Grandin's avatar Noel Grandin

fix windows build

after my commit d7a4135b
"loplugin:constantfunction: lotuswordpro"
it appears that Visual Studio does not support this yet

Change-Id: Ide04fde905e0991e27ec03c3e216fcbd25b1f10b
üst 183f3791
...@@ -88,7 +88,7 @@ private: ...@@ -88,7 +88,7 @@ private:
sal_uInt8 m_nIndex; sal_uInt8 m_nIndex;
bool m_bIsCompressed; bool m_bIsCompressed;
public: public:
sal_uInt32 Read( LwpSvStream *pStrm ); sal_uInt32 Read( LwpSvStream *pStrm );
sal_uInt32 Read( LwpObjectStream *pStrm ); sal_uInt32 Read( LwpObjectStream *pStrm );
sal_uInt32 ReadIndexed( LwpSvStream* pStrm ); sal_uInt32 ReadIndexed( LwpSvStream* pStrm );
sal_uInt32 ReadIndexed( LwpObjectStream *pStrm ); sal_uInt32 ReadIndexed( LwpObjectStream *pStrm );
...@@ -97,7 +97,7 @@ public: ...@@ -97,7 +97,7 @@ public:
/** /**
* @descr return the size of object id with format: low(4bytes)+high(2bytes) * @descr return the size of object id with format: low(4bytes)+high(2bytes)
*/ */
static sal_uInt32 DiskSize() { return sizeof(m_nLow) + sizeof(m_nHigh); } static sal_uInt32 DiskSize() { return sizeof(sal_uInt32) + sizeof(sal_uInt16); } // sizeof(m_nLow) + sizeof(m_nHigh)
sal_uInt32 DiskSizeIndexed() const; sal_uInt32 DiskSizeIndexed() const;
bool IsNull() const; bool IsNull() const;
bool IsCompressed(); bool IsCompressed();
......
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