summaryrefslogtreecommitdiff
path: root/basic/source/inc/expr.hxx
diff options
context:
space:
mode:
authorArnaud Versini <arnaud.versini@gmail.com>2016-01-24 18:59:33 +0100
committerMichael Stahl <mstahl@redhat.com>2016-01-27 15:36:52 +0000
commit4cac0c05c645fbcc67cf6090144026a2dfd02064 (patch)
tree4090c91ff1861e7b3cffd40aa60b48b8f631907b /basic/source/inc/expr.hxx
parent697007006fcad5d0603a53d3a3841bf9136f76dc (diff)
BASIC: SbiExpression::IsIntConstant has side effects.
Also renames IsIntConstant to ConvertToIntConstIfPossible. Change-Id: Ib4b465ac0d890762547fb2d83c26ad6be6ee75e8 Reviewed-on: https://gerrit.libreoffice.org/21746 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'basic/source/inc/expr.hxx')
-rw-r--r--basic/source/inc/expr.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/basic/source/inc/expr.hxx b/basic/source/inc/expr.hxx
index 53a96387fb53..eac1c8a75966 100644
--- a/basic/source/inc/expr.hxx
+++ b/basic/source/inc/expr.hxx
@@ -129,7 +129,7 @@ public:
bool IsValid() { return !bError; }
bool IsConstant() // true: constant operand
{ return eNodeType == SbxSTRVAL || eNodeType == SbxNUMVAL; }
- bool IsIntConst();
+ void ConvertToIntConstIfPossible();
bool IsVariable();
bool IsUnary()
{ return pLeft && !pRight; }
@@ -197,7 +197,7 @@ public:
bool IsValid() { return pExpr->IsValid(); }
bool IsVariable() { return pExpr->IsVariable(); }
bool IsLvalue() { return pExpr->IsLvalue(); }
- bool IsIntConstant() { return pExpr->IsIntConst(); }
+ void ConvertToIntConstIfPossible() { pExpr->ConvertToIntConstIfPossible(); }
const OUString& GetString() { return pExpr->GetString(); }
SbiSymDef* GetRealVar() { return pExpr->GetRealVar(); }
SbiExprNode* GetExprNode() { return pExpr; }