Class Wizard Problem

CodeLite installation/troubleshooting forum
evstevemd
CodeLite Guru
Posts: 352
Joined: Sun Nov 29, 2009 7:36 pm
Genuine User: Yes
IDE Question: C++
Contact:

Class Wizard Problem

Post 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?

CodeLite 15.x
CodeLite is awesome, I just Love it!

User avatar
eranif
CodeLite Plugin
Posts: 6373
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Class Wizard Problem

Post 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
Make sure you have read the HOW TO POST thread
evstevemd
CodeLite Guru
Posts: 352
Joined: Sun Nov 29, 2009 7:36 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Class Wizard Problem

Post 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!

CodeLite 15.x
CodeLite is awesome, I just Love it!

Post Reply