summaryrefslogtreecommitdiff
path: root/basic/source/inc/expr.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-07-14 14:50:07 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-07-15 09:07:05 +0000
commit22b094f5d8e1e82375b135abd3a6f99a9a555244 (patch)
tree8f678aa9d5db3400fb8aba0ade1f1cbda23696f1 /basic/source/inc/expr.hxx
parentba562acdf293e0e0ec4f747716e7fb0db848f1cb (diff)
loplugin:unusedmethods basic
Change-Id: Iddfbde451088750f8c74f3ac72c35b5ccfbe0ab1 Reviewed-on: https://gerrit.libreoffice.org/17044 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'basic/source/inc/expr.hxx')
-rw-r--r--basic/source/inc/expr.hxx6
1 files changed, 0 insertions, 6 deletions
diff --git a/basic/source/inc/expr.hxx b/basic/source/inc/expr.hxx
index d5fdfd5b99ca..0df028181a3d 100644
--- a/basic/source/inc/expr.hxx
+++ b/basic/source/inc/expr.hxx
@@ -145,7 +145,6 @@ public:
const OUString& GetString() { return aStrVal; }
short GetNumber() { return (short)nVal; }
SbiExprList* GetParameters() { return aVar.pPar; }
- SbiExprListVector* GetMoreParameters() { return aVar.pvMorePar; }
void Optimize(SbiParser*); // tree matching
@@ -192,19 +191,15 @@ public:
void SetBased() { bBased = true; }
bool IsBased() { return bBased; }
void SetByVal() { bByVal = true; }
- bool IsByVal() { return bByVal; }
bool IsBracket() { return bBracket; }
bool IsValid() { return pExpr->IsValid(); }
- bool IsConstant() { return pExpr->IsConstant(); }
bool IsVariable() { return pExpr->IsVariable(); }
bool IsLvalue() { return pExpr->IsLvalue(); }
bool IsIntConstant() { return pExpr->IsIntConst(); }
const OUString& GetString() { return pExpr->GetString(); }
- SbiSymDef* GetVar() { return pExpr->GetVar(); }
SbiSymDef* GetRealVar() { return pExpr->GetRealVar(); }
SbiExprNode* GetExprNode() { return pExpr; }
SbxDataType GetType() { return pExpr->GetType(); }
- void SetType( SbxDataType eType){ pExpr->eType = eType; }
void Gen( RecursiveMode eRecMode = UNDEFINED );
};
@@ -249,7 +244,6 @@ class SbiDimList : public SbiExprList {
bool bConst; // true: everything integer constants
public:
SbiDimList( SbiParser* ); // parsing Ctor
- bool IsConstant() { return bConst; }
};
#endif