]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/tex2rtf/src/table.cpp
remove miniframe stuff from GtkOnSize(), it's handled by wxFrame
[wxWidgets.git] / utils / tex2rtf / src / table.cpp
index b289cdbe2d05b8a170e4b83ec32e7f00a1505beb..55a8e68279798f6f035b71d0ab81e8b9c4c71bb0 100644 (file)
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
 // For compilers that support precompilation, includes "wx.h".
 #include "wx/wxprec.h"
 
@@ -122,7 +118,7 @@ bool ParseTableArgument(wxChar *value)
 
       while ((i < len) && (isdigit(ch) || ch == '.'))
       {
-        numberBuf[j] = ch;
+        numberBuf[j] = (wxChar)ch;
         j ++;
         i ++;
         ch = value[i];