I am new to Code::Blocks and am trying to reproduce an example from the wxSmith tutorial (http://wiki.codeblocks.org/index.php?title=WxSmith_tutorial:_Creating_items_with_custom_paint_and_mouse_handling).
when I compile the program, I get a fatal error:
|116|error: variable 'wxPaintDC dc' has initializer but incomplete type|
the code referred to is:
void PAintexperimentFrame::OnPanel1Paint(wxPaintEvent& event)
{
wxPaintDC dc(Panel1);
dc.drawLine(0,0,100,100);
}
Can anyone help me?
Add the line to include the needed header.
This is the likely missing line.
#include <wx/dcclient.h>
Tim S.
Thanks that solved the problem.