diff options
author | August Sodora <augsod@gmail.com> | 2011-11-20 22:48:30 -0500 |
---|---|---|
committer | August Sodora <augsod@gmail.com> | 2011-11-20 22:48:30 -0500 |
commit | 58b1a6ccc64d08a8a2c63071c0081883648cd6cb (patch) | |
tree | d1aca2f6646be804fb5a405115b630ea75439f2f | |
parent | fcae5e4103bb16bd44a48c2b63dcbafa9b438a9e (diff) |
cppcheck: Unused private function 'CSS1Parser::SetLineNr'
-rw-r--r-- | sw/source/filter/html/parcss1.hxx | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/sw/source/filter/html/parcss1.hxx b/sw/source/filter/html/parcss1.hxx index 1bbcfae8dff0..f4a0474d411b 100644 --- a/sw/source/filter/html/parcss1.hxx +++ b/sw/source/filter/html/parcss1.hxx @@ -233,7 +233,6 @@ class CSS1Parser sal_uInt32 IncLineNr() { return ++nlLineNr; } sal_uInt32 IncLinePos() { return ++nlLinePos; } - inline sal_uInt32 SetLineNr( sal_uInt32 nlNum ); // inline unten inline sal_uInt32 SetLinePos( sal_uInt32 nlPos ); // inline unten // Parsen von Teilen der Grammatik @@ -276,13 +275,6 @@ public: inline sal_uInt32 GetLinePos() const { return nlLinePos; } }; -inline sal_uInt32 CSS1Parser::SetLineNr( sal_uInt32 nlNum ) -{ - sal_uInt32 nlOld = nlLineNr; - nlLineNr = nlNum; - return nlOld; -} - inline sal_uInt32 CSS1Parser::SetLinePos( sal_uInt32 nlPos ) { sal_uInt32 nlOld = nlLinePos; |