diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-09-28 09:58:59 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-09-28 13:31:49 +0200 |
commit | 2fbb97367ac93eb11429382f31fa6417eec76f8d (patch) | |
tree | 91b03fca5308c5fbe19bb309192bb75591e1f810 /lotuswordpro | |
parent | d664a01f3be81572526d1136c261d86c12f5af90 (diff) |
loplugin:unusedmethods
Change-Id: I5f9ef043d76c55f2c761fd08a2bc1dae66b675c8
Reviewed-on: https://gerrit.libreoffice.org/61073
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'lotuswordpro')
-rw-r--r-- | lotuswordpro/source/filter/lwplaypiece.cxx | 9 | ||||
-rw-r--r-- | lotuswordpro/source/filter/lwplaypiece.hxx | 1 |
2 files changed, 0 insertions, 10 deletions
diff --git a/lotuswordpro/source/filter/lwplaypiece.cxx b/lotuswordpro/source/filter/lwplaypiece.cxx index 443b6c1de8ab..c4519fc27592 100644 --- a/lotuswordpro/source/filter/lwplaypiece.cxx +++ b/lotuswordpro/source/filter/lwplaypiece.cxx @@ -286,15 +286,6 @@ void LwpLayoutColumns::Read() } } -double LwpLayoutColumns::GetColWidth(sal_uInt16 nIndex) -{ - if(nIndex >= m_nNumCols) - { - return 0; - } - return m_pColumns[nIndex].GetWidth(); -} - double LwpLayoutColumns::GetColGap(sal_uInt16 nIndex) { if(nIndex >= m_nNumCols) diff --git a/lotuswordpro/source/filter/lwplaypiece.hxx b/lotuswordpro/source/filter/lwplaypiece.hxx index 3f1e25d40454..90d98dc9c3a2 100644 --- a/lotuswordpro/source/filter/lwplaypiece.hxx +++ b/lotuswordpro/source/filter/lwplaypiece.hxx @@ -216,7 +216,6 @@ public: LwpLayoutColumns(LwpObjectHeader const & objHdr, LwpSvStream* pStrm); virtual void Parse(IXFStream* pOutputStream) override; sal_uInt16 GetNumCols(){return m_nNumCols;} - double GetColWidth(sal_uInt16 nIndex); double GetColGap(sal_uInt16 nIndex); private: virtual void Read() override; |