News:

When registered with our forums, feel free to send a "here I am" post here to differ human beings from SPAM bots.

Main Menu

2 minor bugs 1598

Started by grv575, December 27, 2005, 04:56:07 AM

Previous topic - Next topic

grv575

1)

Unicode build.  Errors out with (something with the latest parser additions):


2)

Linux ansi build.  Compiles OK, but then create a new wxwidgets project and hit compile.  Errors with:


Compare with windows version:

rickg22

i have this:


#ifdef __WXWINDOWS__

#  include <wx/string.h>
#  define string wxString
#  define char wxChar

#else

#include <string>

#endif


Should I indent that include?

grunerite

I tried the Unicode build yesterday and had the same problem. The project is missing one of the parser sources and header (searchtree?). Adding it to the project seemed to fix it. Hope it is ok to post this.
grunerite

grv575

#3
Heh, the problem was that searchtree.cpp and searchtree.h were not included in the .cbp file...

So #1 can be fixed by updating the -UNI.cbp file
#2 still exists I believe (pch on linux for wxWidgets template).

grv575

OK a third bug - this one's in the debugger - setting breakpoints (the line# isn't being added - it just puts C:/1/123/main.cpp:).





[attachment deleted by admin]

280Z28

Quote from: grv575 on December 27, 2005, 06:23:04 AM
OK a third bug - this one's in the debugger - setting breakpoints (the line# isn't being added - it just puts C:/1/123/main.cpp:).





http://sourceforge.net/tracker/index.php?func=detail&aid=1389953&group_id=126998&atid=707418
78 280Z, "a few bolt-ons" - 12.71@109.04
99 Trans Am, "Daily Driver" - 525rwhp/475rwtq
Check out The Sam Zone :cool:

rickg22

Quote from: grv575 on December 27, 2005, 05:54:06 AM
Heh, the problem was that searchtree.cpp and searchtree.h were not included in the .cbp file...

So #1 can be fixed by updating the -UNI.cbp file
#2 still exists I believe (pch on linux for wxWidgets template).

Somebody submit a patch for #1 please!