summaryrefslogtreecommitdiff
path: root/shared/zstring.h
diff options
context:
space:
mode:
Diffstat (limited to 'shared/zstring.h')
-rw-r--r--shared/zstring.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/shared/zstring.h b/shared/zstring.h
index 73e2f066..286ed7cc 100644
--- a/shared/zstring.h
+++ b/shared/zstring.h
@@ -115,10 +115,10 @@ typedef char Zchar;
#endif
//"The reason for all the fuss above" (Loki/SmartPtr)
-typedef Zbase<Zchar, StorageRefCount, AllocatorFreeStoreChecked> Zstring;
-
-
+typedef Zbase<Zchar, StorageRefCount, AllocatorFreeStoreChecked> Zstring; //for use with file names
+//fast replacement for wxString modelling exponential growth
+typedef Zbase<wchar_t, StorageRefCount, AllocatorFreeStoreChecked> zxString; //general unicode string
bgstack15