summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2008-07-02 09:00:57 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2008-07-02 09:00:57 +0000
commit47f2c98414a89939de68cc2b3aeafa412738d9b0 (patch)
tree8b40eb47e684917fd9b3524705f5f3868401dd57 /basic
parentf62e3ee9ea12cd3cabee9e5fc0e387a8fdeb846e (diff)
INTEGRATION: CWS npower10 (1.11.64); FILE MERGED
2008/05/07 07:10:12 pflin 1.11.64.2: RESYNC: (1.11-1.12); FILE MERGED 2007/12/20 21:23:02 npower 1.11.64.1: #58089
Diffstat (limited to 'basic')
-rw-r--r--basic/source/inc/symtbl.hxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/basic/source/inc/symtbl.hxx b/basic/source/inc/symtbl.hxx
index 88f506bb89..1eabca5c0d 100644
--- a/basic/source/inc/symtbl.hxx
+++ b/basic/source/inc/symtbl.hxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: symtbl.hxx,v $
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
* This file is part of OpenOffice.org.
*
@@ -194,6 +194,7 @@ class SbiProcDef : public SbiSymDef { // Prozedur-Definition (aus Basic):
BOOL bCdecl : 1; // TRUE: CDECL angegeben
BOOL bPublic : 1; // TRUE: proc ist PUBLIC
BOOL mbProcDecl : 1; // TRUE: instanciated by SbiParser::ProcDecl
+ BOOL bStatic : 1; // TRUE:
public:
SbiProcDef( SbiParser*, const String&, BOOL bProcDecl=false );
virtual ~SbiProcDef();
@@ -206,6 +207,8 @@ public:
String& GetAlias() { return aAlias; }
void SetPublic( BOOL b ) { bPublic = b; }
BOOL IsPublic() const { return bPublic; }
+ void SetStatic( BOOL b ) { bStatic = b; }
+ BOOL IsStatic() const { return bStatic; }
void SetCdecl( BOOL b = TRUE) { bCdecl = b; }
BOOL IsCdecl() const { return bCdecl; }
BOOL IsUsedForProcDecl() const { return mbProcDecl; }