diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2008-07-03 14:56:27 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2008-07-03 14:56:27 +0000 |
commit | 7e808e7a8f74ad0333f93f7f658dc966d56fdc33 (patch) | |
tree | b243b173cc89496198cbdd8b482d63b2fd7d7aab /basic | |
parent | 8aa8d19538ce8664df7f91b78c9d15b869edb043 (diff) |
#i10000# fix for WAE for solaris
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/inc/symtbl.hxx | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/basic/source/inc/symtbl.hxx b/basic/source/inc/symtbl.hxx index 197e8b820a40..f3d691bf059a 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; } |