X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/cdf1e7142564c55f5299f1f2d0909090534eb97c..594f0f5bf1355fb8d58f403d3ebacc1c1767c429:/src/os2/radiobut.cpp?ds=inline diff --git a/src/os2/radiobut.cpp b/src/os2/radiobut.cpp index eff8c241ac..d0b290c997 100644 --- a/src/os2/radiobut.cpp +++ b/src/os2/radiobut.cpp @@ -23,11 +23,9 @@ #include "wx/brush.h" #endif -#include "wx/msw/private.h" +#include "wx/os2/private.h" -#if !USE_SHARED_LIBRARY IMPLEMENT_DYNAMIC_CLASS(wxRadioButton, wxControl) -#endif bool wxRadioButton::OS2Command(WXUINT param, WXWORD id) { @@ -45,11 +43,15 @@ bool wxRadioButton::Create(wxWindow *parent, wxWindowID id, const wxString& label, const wxPoint& pos, const wxSize& size, long style, +#if wxUSE_VALIDATORS const wxValidator& validator, +#endif const wxString& name) { SetName(name); +#if wxUSE_VALIDATORS SetValidator(validator); +#endif if (parent) parent->AddChild(this); @@ -145,15 +147,22 @@ void wxRadioButton::Command (wxCommandEvent & event) ProcessCommand (event); } +// Not implemented +#if 0 + bool wxBitmapRadioButton::Create(wxWindow *parent, wxWindowID id, const wxBitmap *bitmap, const wxPoint& pos, const wxSize& size, long style, +#if wxUSE_VALIDATORS const wxValidator& validator, +#endif const wxString& name) { SetName(name); +#if wxUSE_VALIDATORS SetValidator(validator); +#endif if (parent) parent->AddChild(this); SetBackgroundColour(parent->GetBackgroundColour()); @@ -211,3 +220,4 @@ bool wxBitmapRadioButton::GetValue(void) const return FALSE; } +#endif \ No newline at end of file