News:

The new Release 25.03 is out! You can download binaries for Windows and many major Linux distros here .

Main Menu

No matching function?

Started by FlyingIsFun1217, February 04, 2007, 10:01:19 PM

Previous topic - Next topic

FlyingIsFun1217

Hey,

This might be more or less just wxWidgets, but every time I add a widget with, lets say for wxStaticText, ...

WxStaticText1 = new wxStaticText(this, ID_WXSTATICTEXT1, wxPoint (10,10), wxDefaultSize, wxLC_REPORT);

and

#include <wx/stattext.h>

...and...

wxStaticText *WxStaticText1;

AND...

ID_WXSTATICTEXT1 = 1017,

I just get the message:

Quoteerror: no matching function for call to 'wxStaticText::wxStaticText(MUMSFrm *const, MUMSFrm::<anonymous enum>, wxPoint, const wxSize&, int)'

Something I'm missing?

Thanks!
FlyingIsFun1217

TDragon

#1
Here is the prototype for the wxStaticText constructor:

wxStaticText(wxWindow* parent, wxWindowID id, const wxString& label, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0, const wxString& name = "staticText")

Your code, therefore, is both skipping the label parameter and, apparently, trying to pass a const pointer as the (non-const) parent parameter. (Maybe you're within a const member function?)

That aside, the Code::Blocks forums are for posting about issues specifically related to Code::Blocks, and unless the code in question is being automatically generated by wxSmith, this issue is specifically related to wxWidgets, not C::B.
[url="https://jmeubank.github.io/tdm-gcc/"]https://jmeubank.github.io/tdm-gcc/[/url] - TDM-GCC compiler suite for Windows (GCC 9.2.0 2020-03-08, 32/64-bit, no extra DLLs)

FlyingIsFun1217

Alright, I'll post at the wxForum's.

FlyingIsFun1217