diff options
Diffstat (limited to 'lotuswordpro/source')
-rw-r--r-- | lotuswordpro/source/filter/bento.hxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lotuswordpro/source/filter/bento.hxx b/lotuswordpro/source/filter/bento.hxx index 4608b9b21996..dd1692af1ce7 100644 --- a/lotuswordpro/source/filter/bento.hxx +++ b/lotuswordpro/source/filter/bento.hxx @@ -309,11 +309,11 @@ class CBenValueSegment : public CUtListElmt public: // Internal methods CBenValueSegment(CBenValue * pValue, BenContainerPos Pos, size_t Size) : CUtListElmt(&pValue->GetValueSegments()) - { cpValue = pValue; cImmediate = false; cPos = Pos; + { cImmediate = false; cPos = Pos; cSize = Size; } CBenValueSegment(CBenValue * pValue, const void * pImmData, unsigned short Size) : CUtListElmt(&pValue->GetValueSegments()) - { cpValue = pValue; cImmediate = true; + { cImmediate = true; std::memcpy(cImmData, pImmData, Size); cSize = Size; } bool IsImmediate() { return cImmediate; } BenContainerPos GetPosition() { return cPos; } @@ -321,7 +321,6 @@ public: // Internal methods BenByte * GetImmediateData() { return cImmData; } private: // Data - CBenValue * cpValue; bool cImmediate; union { |