summaryrefslogtreecommitdiff
path: root/basic/source/inc/sbintern.hxx
diff options
context:
space:
mode:
authorsb <sb@openoffice.org>2010-09-22 13:37:40 +0200
committersb <sb@openoffice.org>2010-09-22 13:37:40 +0200
commite945ff4a192fe8aad64750933f8fa44ccb74f522 (patch)
treec58c1946793b03142625dc350c8349ea8c8bedb4 /basic/source/inc/sbintern.hxx
parent56c2cd6dc5b2545336ee0777a81132d2fed2d973 (diff)
parentbd1092ebc0b329883d1c079d598a73f3af4cd548 (diff)
sb126: merged in DEV300_m88
Diffstat (limited to 'basic/source/inc/sbintern.hxx')
-rw-r--r--basic/source/inc/sbintern.hxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/basic/source/inc/sbintern.hxx b/basic/source/inc/sbintern.hxx
index 59cfe21d25a8..4c54e2301bd5 100644
--- a/basic/source/inc/sbintern.hxx
+++ b/basic/source/inc/sbintern.hxx
@@ -50,10 +50,16 @@ public:
virtual SbxObject* CreateObject( const String& );
};
+typedef ::std::vector< String > StringVector;
+
struct SbClassData
{
SbxArrayRef mxIfaces;
+ // types this module depends on because of use in Dim As New <type>
+ // needed for initialization order of class modules
+ StringVector maRequiredTypes;
+
SbClassData( void );
~SbClassData( void )
{ clear(); }