Page 1 of 1

Class Wizard Problem

Posted: Mon Aug 09, 2010 11:48 pm
by evstevemd
Class wizard create my wxWidgets includes wrong
it includes something like

Code: Select all

#include "frame.h"
instead of

Code: Select all

#include <wx/frame.h>
what do I miss?

Re: Class Wizard Problem

Posted: Tue Aug 10, 2010 12:07 am
by eranif
codelite can not guess which part of the file path it should take (wx/frame.h or maybe wx/msw/frame.h or include/wx/frame.h etc..), so you should probably fix it manually

Eran

Re: Class Wizard Problem

Posted: Tue Aug 10, 2010 4:21 pm
by evstevemd
Have you got plans to add settings/intelligence for adding certain prefix for a given path?
I mean, like setting it to automatically append wx for all headers wxWidgets Path.
Thanks for reply!