]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/tex2rtf/src/table.cpp
compilation fix for !wxUSE_THREADS
[wxWidgets.git] / utils / tex2rtf / src / table.cpp
index b289cdbe2d05b8a170e4b83ec32e7f00a1505beb..57750d36a4d98dbac50ce51f2a5b03da22e18425 100644 (file)
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
 // For compilers that support precompilation, includes "wx.h".
 #include "wx/wxprec.h"
 
@@ -30,6 +26,7 @@
 #undef new
 #endif
 
+#include "wx/beforestd.h"
 #if wxUSE_IOSTREAMH
 #include <iostream.h>
 #include <fstream.h>
@@ -37,6 +34,7 @@
 #include <iostream>
 #include <fstream>
 #endif
+#include "wx/afterstd.h"
 
 #include <ctype.h>
 #include "tex2any.h"
@@ -122,7 +120,7 @@ bool ParseTableArgument(wxChar *value)
 
       while ((i < len) && (isdigit(ch) || ch == '.'))
       {
-        numberBuf[j] = ch;
+        numberBuf[j] = (wxChar)ch;
         j ++;
         i ++;
         ch = value[i];