diff options
author | Noel Grandin <noel@peralex.com> | 2015-07-20 14:23:53 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-07-21 06:52:35 +0000 |
commit | d69d4f7174ffae502c4aa9cc69786c897662dddc (patch) | |
tree | 3de4099cd9d62e922834d9a3eec531a417d341cf /scaddins/source/analysis | |
parent | 564805d6f825a7889e039c3f95a638fa7c00b4f4 (diff) |
loplugin:unusedmethods reportdesign,scaddins
Change-Id: I3e2ccdbc0dd97f276a96eae5c041c09e69cede91
Reviewed-on: https://gerrit.libreoffice.org/17235
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'scaddins/source/analysis')
-rw-r--r-- | scaddins/source/analysis/analysishelper.hxx | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/scaddins/source/analysis/analysishelper.hxx b/scaddins/source/analysis/analysishelper.hxx index 1f94bb41f142..d82af307a9c5 100644 --- a/scaddins/source/analysis/analysishelper.hxx +++ b/scaddins/source/analysis/analysishelper.hxx @@ -190,11 +190,10 @@ public: inline sal_uInt16 GetUINameID() const; inline sal_uInt16 GetDescrID() const; - inline bool IsDouble() const; - inline bool HasIntParam() const; + inline bool IsDouble() const; sal_uInt16 GetStrIndex( sal_uInt16 nParamNum ) const; - inline bool Is( const OUString& rCompareTo ) const; + inline bool Is( const OUString& rCompareTo ) const; inline const std::vector<OUString> & GetCompNameList() const; @@ -572,12 +571,6 @@ inline bool FuncData::IsDouble() const } -inline bool FuncData::HasIntParam() const -{ - return bWithOpt; -} - - inline bool FuncData::Is( const OUString& r ) const { return aIntName == r; |