]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/tokenzr.cpp
RenameEntry/Group() functions added to wxConfig and derivations (not yet
[wxWidgets.git] / src / common / tokenzr.cpp
index eb992377113bf19e711d9f2a2b8b9eb9af21398e..34079c0f66f4edf028519479b0639a6577b657d0 100644 (file)
 #pragma implementation "tokenzr.h"
 #endif
 
+// For compilers that support precompilation, includes "wx.h".
+#include "wx/wxprec.h"
+
+#ifdef __BORLANDC__
+#pragma hdrstop
+#endif
+
+#ifndef WX_PRECOMP
+#endif
+
 #include "wx/object.h"
 #include "wx/string.h"
 #include "wx/tokenzr.h"
@@ -83,7 +93,7 @@ wxString wxStringTokenizer::NextToken()
   pos = FindDelims(m_string, m_delims);
   if (pos == -1) {
     r_string = m_string;
-    m_string = (char *)NULL;
+    m_string = wxEmptyString;
     
     return r_string;
   }