Code::Blocks Forums

User forums => Using Code::Blocks => Topic started by: phmb23 on July 11, 2014, 11:57:14 pm

Title: wxPaintDC has initializer but incomplete type
Post by: phmb23 on July 11, 2014, 11:57:14 pm
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?
Title: Re: wxPaintDC has initializer but incomplete type
Post by: stahta01 on July 12, 2014, 12:04:10 am
Add the line to include the needed header.

This is the likely missing line.
Code
#include <wx/dcclient.h>

Tim S.

Title: Re: wxPaintDC has initializer but incomplete type
Post by: phmb23 on July 12, 2014, 12:13:28 am
Thanks that solved the problem.