diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-29 12:40:04 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-10-30 05:58:41 +0000 |
commit | c7e8f21a538c409abe70b90d7bba38386e90a876 (patch) | |
tree | c5d1e79d88c5728c29fa49106b0e7c40e0f5f01d /sc/inc | |
parent | efbde08e2a9930edb4637824d9d3a768873314a8 (diff) |
loplugin:unusedmethods
Change-Id: Id3b5cd75d4357336ed592ef11a3f34d209f8e95f
Reviewed-on: https://gerrit.libreoffice.org/19636
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/bigrange.hxx | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/sc/inc/bigrange.hxx b/sc/inc/bigrange.hxx index 2a3fbae1001d..c677df19aa4a 100644 --- a/sc/inc/bigrange.hxx +++ b/sc/inc/bigrange.hxx @@ -71,9 +71,6 @@ public: { return nCol == r.nCol && nRow == r.nRow && nTab == r.nTab; } bool operator!=( const ScBigAddress& r ) const { return !operator==( r ); } - - friend inline SvStream& WriteScBigAddress( SvStream& rStream, const ScBigAddress& rAdr ); - friend inline SvStream& ReadScBigAddress( SvStream& rStream, ScBigAddress& rAdr ); }; inline void ScBigAddress::PutInOrder( ScBigAddress& r ) @@ -129,18 +126,6 @@ inline ScAddress ScBigAddress::MakeAddress() const return ScAddress( nColA, nRowA, nTabA ); } -inline SvStream& WriteScBigAddress( SvStream& rStream, const ScBigAddress& rAdr ) -{ - rStream.WriteInt32( rAdr.nCol ).WriteInt32( rAdr.nRow ).WriteInt32( rAdr.nTab ); - return rStream; -} - -inline SvStream& ReadScBigAddress( SvStream& rStream, ScBigAddress& rAdr ) -{ - rStream.ReadInt32( rAdr.nCol ).ReadInt32( rAdr.nRow ).ReadInt32( rAdr.nTab ); - return rStream; -} - class ScBigRange { public: |