summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source/filter/lwptblformula.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'lotuswordpro/source/filter/lwptblformula.cxx')
-rw-r--r--lotuswordpro/source/filter/lwptblformula.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/lotuswordpro/source/filter/lwptblformula.cxx b/lotuswordpro/source/filter/lwptblformula.cxx
index e8ba28d7ece2..7732d48153e7 100644
--- a/lotuswordpro/source/filter/lwptblformula.cxx
+++ b/lotuswordpro/source/filter/lwptblformula.cxx
@@ -125,8 +125,8 @@ bool LwpFormulaInfo::ReadCellID()
LwpColumnSpecifier ColumnSpecifier;
bool readSucceeded = true;
- RowSpecifier.QuickRead(m_pObjStrm);
- ColumnSpecifier.QuickRead(m_pObjStrm);
+ RowSpecifier.QuickRead(m_pObjStrm.get());
+ ColumnSpecifier.QuickRead(m_pObjStrm.get());
m_aStack.push_back( new LwpFormulaCellAddr(ColumnSpecifier.ColumnID(cColumn),
RowSpecifier.RowID(m_nFormulaRow)) );
@@ -324,7 +324,7 @@ void LwpFormulaInfo::Read()
m_pObjStrm->SeekRel(2);//flags, size in file: sal_uInt16
LwpNotifyListPersistent cNotifyList;
- cNotifyList.Read(m_pObjStrm);
+ cNotifyList.Read(m_pObjStrm.get());
ReadExpression();