in dbs_kde.cpp (the main cpp for Kdevelop project), I moditified these lines:
[syntax="c"]
#include "myFrame.h"
...
dbs_kdeapp::OnInit() {
...
MyFrame *frame = new MyFrame ((wxFrame *) NULL, -1,
wxT( "Hello World" ),
wxPoint(50,50),
wxSize(450,340),
wxCAPTION|wxRESIZE_BORDER|wxCLOSE_BOX);
frame->Show(TRUE);
...
}
[/syntax]
But when I tried to 'Build project' it came out with this error.
Anyone have experience using DialogBlocks with Kdevelop 3.0? Can share your experience with me?/home/sirius/wx/dbs_kde/src/dbs_kde.cpp:37: undefined reference to MyFrame::MyFrame[in-charge](wxWindow*, int, wxString const&, wxPoint const&, wxSize const&, long)'
Thank you