summaryrefslogtreecommitdiff
path: root/rsc/inc/rsctools.hxx
diff options
context:
space:
mode:
authorJoseph Powers <jpowers27@cox.net>2011-01-25 21:52:10 -0800
committerJoseph Powers <jpowers27@cox.net>2011-01-26 05:44:00 -0800
commit0f44da55121dde853e8e2efb3ac4c80f568909c7 (patch)
tree00e74cb872b90ef7611349cd8737ae78628c81a5 /rsc/inc/rsctools.hxx
parent4f4bec90b8c07c3c0415de7860a560dd16f3ebae (diff)
Remove DECLARE_LIST( RscStrList, ByteString * )
Diffstat (limited to 'rsc/inc/rsctools.hxx')
-rw-r--r--rsc/inc/rsctools.hxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/rsc/inc/rsctools.hxx b/rsc/inc/rsctools.hxx
index 2bc039109f9c..7706a0e61b8d 100644
--- a/rsc/inc/rsctools.hxx
+++ b/rsc/inc/rsctools.hxx
@@ -37,6 +37,7 @@ class RscPtrPtr;
#include <stdio.h>
#include <tools/string.hxx>
#include <tools/list.hxx>
+#include <vector>
/******************* T y p e s *******************************************/
// Zeichensatz
@@ -63,7 +64,9 @@ int rsc_stricmp( const char *string1, const char *string2 );
char* rsc_strdup( const char* );
/****************** C L A S S E S ****************************************/
-DECLARE_LIST( RscStrList, ByteString * )
+
+typedef ::std::vector< ByteString* > RscStrList;
+
/*********** R s c C h a r ***********************************************/
class RscChar
{