X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/45016e1a6bfed375993470efa844b94a42a41c73..f2593d0ddae43a3e9054d2e9bb59646e19dffe73:/src/os2/gauge.cpp diff --git a/src/os2/gauge.cpp b/src/os2/gauge.cpp index 54d06fa5ae..620760fd5f 100644 --- a/src/os2/gauge.cpp +++ b/src/os2/gauge.cpp @@ -46,31 +46,36 @@ #define ZYZGS_3D 0x8000L /* control will be 3D */ /* public function prototypes */ -BOOL _Optlink gaugeInit(HINSTANCE hInstance); +// BOOL _Optlink gaugeInit(HINSTANCE hInstance); -#if !USE_SHARED_LIBRARY IMPLEMENT_DYNAMIC_CLASS(wxGauge, wxControl) -#endif bool wxGauge::Create(wxWindow *parent, wxWindowID id, int range, const wxPoint& pos, const wxSize& size, long style, +#if wxUSE_VALIDATORS const wxValidator& validator, +#endif const wxString& name) { static bool wxGaugeOS2Initialised = FALSE; if ( !wxGaugeOS2Initialised ) { +//TODO: +/* if (!gaugeInit((HINSTANCE) wxGetInstance())) wxFatalError("Cannot initalize Gauge library"); +*/ wxGaugeOS2Initialised = TRUE; } SetName(name); +#if wxUSE_VALIDATORS SetValidator(validator); +#endif if (parent) parent->AddChild(this); m_rangeMax = range; m_gaugePos = 0;