diff options
author | Noel Grandin <noel@peralex.com> | 2016-01-14 16:32:07 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-01-15 09:36:42 +0200 |
commit | 098462c6f69c40422c74cef8f052b7b1ff0c90e8 (patch) | |
tree | b8d3e6f848b18753c9fbd91468b8094b029af742 /sc/inc/validat.hxx | |
parent | f19e32b101d56ceb7215a6a9d45d39a2cd264189 (diff) |
loplugin:unusedmethods unused return value in sc
Change-Id: I3ccc98d2e042120093e2e8508518681588692393
Diffstat (limited to 'sc/inc/validat.hxx')
-rw-r--r-- | sc/inc/validat.hxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sc/inc/validat.hxx b/sc/inc/validat.hxx index f27bf34bb862..34f42bc0cd14 100644 --- a/sc/inc/validat.hxx +++ b/sc/inc/validat.hxx @@ -143,8 +143,6 @@ public: bool EqualEntries( const ScValidationData& r ) const; // for undo // sort (using std::set) by index - // operator== only for sorting - bool operator ==( const ScValidationData& r ) const { return nKey == r.nKey; } bool operator < ( const ScValidationData& r ) const { return nKey < r.nKey; } private: @@ -205,8 +203,6 @@ public: void UpdateDeleteTab( sc::RefUpdateDeleteTabContext& rCxt ); void UpdateMoveTab( sc::RefUpdateMoveTabContext& rCxt ); - bool operator==( const ScValidationDataList& r ) const; // for ref-undo - void clear(); }; |