summaryrefslogtreecommitdiffstats
path: root/basic/source/inc/symtbl.hxx
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
commitcaf4e0f41ccc5f37df3d5b870617ac214312876f (patch)
treebeced926511e29e3ba6ffedbd526c730d29fc915 /basic/source/inc/symtbl.hxx
parentINTEGRATION: CWS npower10 (1.35.40); FILE MERGED (diff)
downloadcore-caf4e0f41ccc5f37df3d5b870617ac214312876f.tar.gz
core-caf4e0f41ccc5f37df3d5b870617ac214312876f.zip
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/source/inc/symtbl.hxx')
-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 ad14ce41d733..197e8b820a40 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; }