diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-06-14 21:18:11 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-06-15 11:11:43 +0100 |
commit | ac34f33dca9d9e4a83e64f70ed0f395a157f0325 (patch) | |
tree | 5c8f9e7066d9a95585a67fb616ef4f1d6819f21c /starmath/inc | |
parent | 8d8f264f57517823a7073eff73f8a8b9c2610ed1 (diff) |
cppcheck: silence bogus unusedScopedObject
Change-Id: I033b9e141bde73820972f285e97f5c14d60b1a43
Diffstat (limited to 'starmath/inc')
-rw-r--r-- | starmath/inc/parse.hxx | 58 |
1 files changed, 29 insertions, 29 deletions
diff --git a/starmath/inc/parse.hxx b/starmath/inc/parse.hxx index fc40be80e4ca..4c04e80ba8bc 100644 --- a/starmath/inc/parse.hxx +++ b/starmath/inc/parse.hxx @@ -62,35 +62,35 @@ class SmParser inline bool TokenInGroup( sal_uLong nGroup ); // grammar - void Table(); - void Line(); - void Expression(); - void Relation(); - void Sum(); - void Product(); - void SubSup(sal_uLong nActiveGroup); - void OpSubSup(); - void Power(); - void Blank(); - void Term(bool bGroupNumberIdent); - void Escape(); - void Operator(); - void Oper(); - void UnOper(); - void Align(); - void FontAttribut(); - void Attribut(); - void Font(); - void FontSize(); - void Color(); - void Brace(); - void Bracebody(bool bIsLeftRight); - void Function(); - void Binom(); - void Stack(); - void Matrix(); - void Special(); - void GlyphSpecial(); + void DoTable(); + void DoLine(); + void DoExpression(); + void DoRelation(); + void DoSum(); + void DoProduct(); + void DoSubSup(sal_uLong nActiveGroup); + void DoOpSubSup(); + void DoPower(); + void DoBlank(); + void DoTerm(bool bGroupNumberIdent); + void DoEscape(); + void DoOperator(); + void DoOper(); + void DoUnOper(); + void DoAlign(); + void DoFontAttribut(); + void DoAttribut(); + void DoFont(); + void DoFontSize(); + void DoColor(); + void DoBrace(); + void DoBracebody(bool bIsLeftRight); + void DoFunction(); + void DoBinom(); + void DoStack(); + void DoMatrix(); + void DoSpecial(); + void DoGlyphSpecial(); // end of grammar LanguageType GetLanguage() const { return m_nLang; } |