summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2008-07-03 14:56:27 +0000
committerVladimir Glazounov <vg@openoffice.org>2008-07-03 14:56:27 +0000
commitdf3150587a5a2ff78d6ee0a26af1e3047f93ebf3 (patch)
tree52854c2bec998fd6483fe5420403faf80a1dccf8 /basic
parent2fdf391c833e3bc8bbe9e552ba989572a640b809 (diff)
#i10000# fix for WAE for solaris
Diffstat (limited to 'basic')
-rw-r--r--basic/source/inc/symtbl.hxx7
1 files changed, 2 insertions, 5 deletions
diff --git a/basic/source/inc/symtbl.hxx b/basic/source/inc/symtbl.hxx
index 1eabca5c0d..8b19aa6da6 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.13 $
+ * $Revision: 1.14 $
*
* This file is part of OpenOffice.org.
*
@@ -160,7 +160,7 @@ public:
void SetOptional() { bOpt = TRUE; }
void SetParamArray() { bParamArray = TRUE; }
void SetByVal() { bByVal = TRUE; }
- void SetStatic() { bStatic = TRUE; }
+ void SetStatic( BOOL bAsStatic = TRUE ) { bStatic = bAsStatic; }
void SetNew() { bNew = TRUE; }
void SetDefinedAs() { bAs = TRUE; }
void SetGlobal(BOOL b){ bGlobal = b; }
@@ -194,7 +194,6 @@ 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();
@@ -207,8 +206,6 @@ 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; }