X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/674ac8b919eecbc201b5f23b470a567cd0565e10..ee8dbe630811f87117cc5dc7bf115d5538978e7c:/include/wx/motif/control.h diff --git a/include/wx/motif/control.h b/include/wx/motif/control.h index a1928d0a09..e6f8a9acca 100644 --- a/include/wx/motif/control.h +++ b/include/wx/motif/control.h @@ -23,7 +23,7 @@ #define wxControlNameStr _T("control") // General item class -class WXDLLEXPORT wxControl: public wxWindow +class WXDLLEXPORT wxControl: public wxControlBase { DECLARE_ABSTRACT_CLASS(wxControl) @@ -35,7 +35,16 @@ public: const wxSize &size = wxDefaultSize, long style = 0, const wxValidator& validator = wxDefaultValidator, - const wxString &name = wxControlNameStr ); + const wxString &name = wxControlNameStr ) + { + Create(parent, id, pos, size, style, validator, name); + } + + bool Create(wxWindow *parent, wxWindowID id, + const wxPoint& pos = wxDefaultPosition, + const wxSize& size = wxDefaultSize, long style = 0, + const wxValidator& validator = wxDefaultValidator, + const wxString& name = wxControlNameStr); ~wxControl();