summaryrefslogtreecommitdiffstats
path: root/basic/source/inc/symtbl.hxx
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2005-01-28 15:08:14 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2005-01-28 15:08:14 +0000
commitfc41419b1e02f7ec868b0cac4271d94a9dac11bc (patch)
tree57b1d637833bea3308a5b4a6468e363ddbd89c46 /basic/source/inc/symtbl.hxx
parentINTEGRATION: CWS ab13fixes (1.8.44); FILE MERGED (diff)
downloadcore-fc41419b1e02f7ec868b0cac4271d94a9dac11bc.tar.gz
core-fc41419b1e02f7ec868b0cac4271d94a9dac11bc.zip
INTEGRATION: CWS ab13fixes (1.5.18); FILE MERGED
2005/01/20 16:16:56 ab 1.5.18.1: #111897# SbiSymDef::bParamArray flag
Diffstat (limited to 'basic/source/inc/symtbl.hxx')
-rw-r--r--basic/source/inc/symtbl.hxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/basic/source/inc/symtbl.hxx b/basic/source/inc/symtbl.hxx
index cff3cad10fd3..139a74f8f4c9 100644
--- a/basic/source/inc/symtbl.hxx
+++ b/basic/source/inc/symtbl.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: symtbl.hxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: pjunck $ $Date: 2004-11-02 11:56:50 $
+ * last change: $Author: rt $ $Date: 2005-01-28 16:08:14 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -173,6 +173,7 @@ protected:
BOOL bStatic : 1; // TRUE: STATIC-Variable
BOOL bAs : 1; // TRUE: Datentyp per AS XXX definiert
BOOL bGlobal : 1; // TRUE: Global-Variable
+ BOOL bParamArray : 1; // TRUE: ParamArray parameter
USHORT nDefaultId; // Symbol number of default value
public:
SbiSymDef( const String& );
@@ -196,6 +197,7 @@ public:
short GetDims() const { return nDims; }
BOOL IsDefined() const{ return bChained; }
void SetOptional() { bOpt = TRUE; }
+ void SetParamArray() { bParamArray = TRUE; }
void SetByVal() { bByVal = TRUE; }
void SetStatic() { bStatic = TRUE; }
void SetNew() { bNew = TRUE; }
@@ -204,6 +206,7 @@ public:
void SetDefaultId( USHORT n ) { nDefaultId = n; }
USHORT GetDefaultId( void ) { return nDefaultId; }
BOOL IsOptional() const{ return bOpt; }
+ BOOL IsParamArray() const{ return bParamArray; }
BOOL IsByVal() const { return bByVal; }
BOOL IsStatic() const { return bStatic; }
BOOL IsNew() const { return bNew; }