diff options
author | Joseph Powers <jpowers27@cox.net> | 2011-01-22 21:51:18 -0800 |
---|---|---|
committer | Joseph Powers <jpowers27@cox.net> | 2011-01-22 21:51:18 -0800 |
commit | f99fbee2e6774a2a86d1c5e6e59e853cb85dc235 (patch) | |
tree | d993e6f670a49ca055c0e957f5aa76370c27bf6c /l10ntools/inc | |
parent | 398d0365731e35ec5d377ea1ec4600711f007e4b (diff) |
Remove DECLARE_LIST( ResStack, ResData * )
Diffstat (limited to 'l10ntools/inc')
-rw-r--r-- | l10ntools/inc/export.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/l10ntools/inc/export.hxx b/l10ntools/inc/export.hxx index 7ebd42bb046c..2881c3ab9dca 100644 --- a/l10ntools/inc/export.hxx +++ b/l10ntools/inc/export.hxx @@ -286,7 +286,7 @@ public: #define MERGE_MODE_NORMAL 0x0000 #define MERGE_MODE_LIST 0x0001 -DECLARE_LIST( ResStack, ResData * ) +typedef ::std::vector< ResData* > ResStack; // forwards class WordTransformer; class ParserQueue; @@ -306,7 +306,7 @@ private: BOOL bDefine; // cur. res. in a define? BOOL bNextMustBeDefineEOL; // define but no \ at lineend - ULONG nLevel; // res. recursiv? how deep? + size_t nLevel; // res. recursiv? how deep? USHORT nList; // cur. res. is String- or FilterList ByteString nListLang; ULONG nListIndex; |