Compile Error w/ MinGW and wx 2.9.3
Status: Beta
Brought to you by:
pstieber
I'm trying to compile with MinGW/MSYS and wxWidgets 2.9.3. There seems to be a problem in the file textutils.cpp with converting a const wxStringCharType* to const char*. I changed line 733 from:
"ifstream Is(FileName.wx_str(), ios::in);"
to
"ifstream Is(FileName.c_str(), ios::in);"
and it compiled.
Compiler output