summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2003-04-23 15:57:26 +0000
committerRüdiger Timm <rt@openoffice.org>2003-04-23 15:57:26 +0000
commitea91d5fb035a83ee08613ec741b4c56ded77da06 (patch)
treed7ca1296faf2bc77ef049d589e672bf893cd3e94 /basic
parent88d75e6141fcccf216f6066cd160cdc827bd1686 (diff)
INTEGRATION: CWS uno2 (1.2.82); FILE MERGED
2003/04/13 16:01:09 ab 1.2.82.1: #100883# Enable recursion in Basic
Diffstat (limited to 'basic')
-rw-r--r--basic/source/inc/expr.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/basic/source/inc/expr.hxx b/basic/source/inc/expr.hxx
index 1944187419bf..d9e698a0d5eb 100644
--- a/basic/source/inc/expr.hxx
+++ b/basic/source/inc/expr.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: expr.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: ab $ $Date: 2000-10-10 12:57:06 $
+ * last change: $Author: rt $ $Date: 2003-04-23 16:57:26 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -150,7 +150,7 @@ public:
void Optimize(); // Baumabgleich
- void Gen(); // Ausgabe eines Nodes
+ void Gen( BOOL bParam0Allowed = FALSE ); // Ausgabe eines Nodes
};
class SbiExpression { // der Ausdruck:
@@ -202,7 +202,7 @@ public:
SbiExprNode* GetExprNode() { return pExpr; }
SbxDataType GetType() { return pExpr->GetType(); }
void SetType( SbxDataType eType){ pExpr->eType = eType; }
- void Gen();
+ void Gen( BOOL bParam0Allowed = FALSE );
};
class SbiConstExpression : public SbiExpression {