summaryrefslogtreecommitdiff
path: root/basic/source/inc/parser.hxx
diff options
context:
space:
mode:
authorAndreas Bregas <ab@openoffice.org>2010-08-05 11:52:07 +0200
committerAndreas Bregas <ab@openoffice.org>2010-08-05 11:52:07 +0200
commitf4f1756a4c4cd35d77ccd2b9ca0f38799e6555af (patch)
tree11049db7904b3c155b1d5aff6b7da7044f0e8acf /basic/source/inc/parser.hxx
parent2ecf87efeb1ec5f4185b80cdb333b84f352a011e (diff)
mib18: #163025# Changed RunInit handling for class modules to get right order
Diffstat (limited to 'basic/source/inc/parser.hxx')
-rw-r--r--basic/source/inc/parser.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/basic/source/inc/parser.hxx b/basic/source/inc/parser.hxx
index 1161c4ed259d..733a65db7f61 100644
--- a/basic/source/inc/parser.hxx
+++ b/basic/source/inc/parser.hxx
@@ -34,7 +34,7 @@
#include <vector>
-typedef ::std::vector< String > IfaceVector;
+typedef ::std::vector< String > StringVector;
struct SbiParseStack;
@@ -81,7 +81,8 @@ public:
BOOL bText; // OPTION COMPARE TEXT
BOOL bExplicit; // TRUE: OPTION EXPLICIT
BOOL bClassModule; // TRUE: OPTION ClassModule
- IfaceVector aIfaceVector; // Holds all interfaces implemented by a class module
+ StringVector aIfaceVector; // Holds all interfaces implemented by a class module
+ StringVector aRequiredTypes; // Types used in Dim As New <type> outside subs
SbxDataType eDefTypes[26]; // DEFxxx-Datentypen
SbiParser( StarBASIC*, SbModule* );