Author Topic: The 21 January 2008 build (4837) is out.  (Read 29542 times)

Offline wobien

  • Multiple posting newcomer
  • *
  • Posts: 69
Re: The 21 January 2008 build (4837) is out.
« Reply #15 on: January 26, 2008, 01:12:14 pm »
Verify that "Explicitly add current compiling file directory ..." is checked.
I don't think that would help as the class wizzard puts by default the cpp file in the folder scr and the .h file in the folder include.
You must either set the include folder in the search path, or #include the .h file as:
"../include/newclass.h"
in the .cpp file, instead of as "newclass.h", what happens now.
That is why I made it possible to edit this in my patch:
http://forums.codeblocks.org/index.php/topic,7592.msg57425.html#msg57425
It wouldn't be difficult to let the class wizard choose "../include/newclass.h" by default.