diff options
Diffstat (limited to 'lotuswordpro')
-rw-r--r-- | lotuswordpro/source/filter/lwpfribframe.cxx | 2 | ||||
-rw-r--r-- | lotuswordpro/source/filter/lwpfribframe.hxx | 2 | ||||
-rw-r--r-- | lotuswordpro/source/filter/lwpfribptr.cxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lotuswordpro/source/filter/lwpfribframe.cxx b/lotuswordpro/source/filter/lwpfribframe.cxx index a257284b8618..5cbeb319265e 100644 --- a/lotuswordpro/source/filter/lwpfribframe.cxx +++ b/lotuswordpro/source/filter/lwpfribframe.cxx @@ -228,7 +228,7 @@ void LwpFribRubyFrame::RegisterStyle(LwpFoundry* pFoundry) * @descr: convert Ruby frame * */ -void LwpFribRubyFrame::XFConvert(XFContentContainer* /*pCont*/) +void LwpFribRubyFrame::XFConvert() { LwpRubyLayout* pLayout = GetLayout(); if (pLayout) diff --git a/lotuswordpro/source/filter/lwpfribframe.hxx b/lotuswordpro/source/filter/lwpfribframe.hxx index 85c25bca3b62..a4a43341ab30 100644 --- a/lotuswordpro/source/filter/lwpfribframe.hxx +++ b/lotuswordpro/source/filter/lwpfribframe.hxx @@ -86,7 +86,7 @@ public: void Read(LwpObjectStream* pObjStrm, sal_uInt16 len) override; LwpRubyLayout* GetLayout(); void RegisterStyle(LwpFoundry* pFoundry) override; - void XFConvert(XFContentContainer* pCont); + void XFConvert(); private: LwpObjectID m_objLayout; }; diff --git a/lotuswordpro/source/filter/lwpfribptr.cxx b/lotuswordpro/source/filter/lwpfribptr.cxx index 304678ebfc2e..e02c58950037 100644 --- a/lotuswordpro/source/filter/lwpfribptr.cxx +++ b/lotuswordpro/source/filter/lwpfribptr.cxx @@ -349,7 +349,7 @@ void LwpFribPtr::XFConvert() case FRIB_TAG_RUBYFRAME: { LwpFribRubyFrame* rubyfrmeFrib = static_cast<LwpFribRubyFrame*>(pFrib); - rubyfrmeFrib->XFConvert(m_pXFPara); + rubyfrmeFrib->XFConvert(); break; } default : |