When it's finally time for c++ compiling, I can't see why I run into several symbols not declared, as if some .h files weren't included.
E.g.
Code: Select all
In file included from moneymanagerex/src/mmreportspanel.h:23:0, from moneymanagerex/src/mmpanelbase.cpp:24:
moneymanagerex/src/mmhelppanel.h:60:22: error: wxWebViewEvent’ has not been declared void OnNewWindow(wxWebViewEvent& evt);
Code: Select all
moneymanagerex/src/mmpanelbase.cpp:245:41: error: incomplete type ‘wxWebView’ used in nested name specifier
wxWebView * htmlWindow = wxWebView::New(this, wxID_ANY);
^~~
moneymanagerex/src/mmpanelbase.cpp:246:15: error: invalid use of incomplete type ‘class wxWebView’
htmlWindow->SetPage(BuildPage(), "");
^~
In file included from moneymanagerex/src/mmreportspanel.h:23:0,
from moneymanagerex/src/mmpanelbase.cpp:24:
moneymanagerex/src/mmhelppanel.h:26:7: note: forward declaration of ‘class wxWebView’
class wxWebView;
^~~~~~~~~
Any help is appreciated.