X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b63b07a809f9a3d22596d4971ef5c8971153823a..3be926e348e2d0a3a2c278b9f2cff7843971e0c9:/utils/tex2rtf/src/table.cpp diff --git a/utils/tex2rtf/src/table.cpp b/utils/tex2rtf/src/table.cpp index b289cdbe2d..55a8e68279 100644 --- a/utils/tex2rtf/src/table.cpp +++ b/utils/tex2rtf/src/table.cpp @@ -10,10 +10,6 @@ // 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];