diff options
author | Noel Grandin <noel@peralex.com> | 2015-07-21 15:39:17 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-07-22 07:02:34 +0000 |
commit | 90e8ad7ab779740c7381d26ffe7d08acc3a9ff96 (patch) | |
tree | 05f271eff42a09203d07326ec7752ff5bfe40f08 /sc/inc/compiler.hxx | |
parent | b975aceec3c5f101916b525c10c44408b3e9da9d (diff) |
loplugin:unusedmethods scripting,sc
Change-Id: I0016aefce1aad3a89bd23dcec6fbab58a7c844d7
Reviewed-on: https://gerrit.libreoffice.org/17263
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sc/inc/compiler.hxx')
-rw-r--r-- | sc/inc/compiler.hxx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/sc/inc/compiler.hxx b/sc/inc/compiler.hxx index 2dfa2f7247b1..f6267a493aeb 100644 --- a/sc/inc/compiler.hxx +++ b/sc/inc/compiler.hxx @@ -175,7 +175,6 @@ public: void SetExternalSingleRef( sal_uInt16 nFileId, const OUString& rTabName, const ScSingleRefData& rRef ); void SetExternalDoubleRef( sal_uInt16 nFileId, const OUString& rTabName, const ScComplexRefData& rRef ); void SetExternalName( sal_uInt16 nFileId, const OUString& rName ); - void SetMatrix( ScMatrix* p ); void SetExternal(const sal_Unicode* pStr); /** If the token is a non-external reference, determine if the reference is @@ -186,13 +185,10 @@ public: bool IsValidReference() const; formula::FormulaToken* CreateToken() const; // create typified token - void Load( SvStream&, sal_uInt16 nVer ); static sal_Int32 GetStrLen( const sal_Unicode* pStr ); // as long as a "string" is an array static size_t GetStrLenBytes( sal_Int32 nLen ) { return nLen * sizeof(sal_Unicode); } - static size_t GetStrLenBytes( const sal_Unicode* pStr ) - { return GetStrLenBytes( GetStrLen( pStr ) ); } }; class SC_DLLPUBLIC ScCompiler : public formula::FormulaCompiler @@ -445,7 +441,6 @@ public: */ ScTokenArray* CompileString( const OUString& rFormula ); ScTokenArray* CompileString( const OUString& rFormula, const OUString& rFormulaNmsp ); - const ScDocument* GetDoc() const { return pDoc; } const ScAddress& GetPos() const { return aPos; } void MoveRelWrap( SCCOL nMaxCol, SCROW nMaxRow ); |