// Created: 2003/07/14
// RCS-ID: $Id$
// Copyright: (c) 2003 David Elliott
-// Licence: wxWindows licence
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifndef __WX_COCOA_SPINBUTT_H__
// ========================================================================
// wxSpinButton
// ========================================================================
-class WXDLLEXPORT wxSpinButton: public wxSpinButtonBase// , protected wxCocoaNSStepper
+class WXDLLIMPEXP_CORE wxSpinButton: public wxSpinButtonBase// , protected wxCocoaNSStepper
{
DECLARE_DYNAMIC_CLASS(wxSpinButton)
DECLARE_EVENT_TABLE()
// ------------------------------------------------------------------------
public:
wxSpinButton() { }
- wxSpinButton(wxWindow *parent, wxWindowID winid = -1,
+ wxSpinButton(wxWindow *parent, wxWindowID winid = wxID_ANY,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = wxSP_VERTICAL | wxSP_ARROW_KEYS,
Create(parent, winid, pos, size, style, name);
}
- bool Create(wxWindow *parent, wxWindowID winid = -1,
+ bool Create(wxWindow *parent, wxWindowID winid = wxID_ANY,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = wxSP_HORIZONTAL,
virtual void SetRange(int minValue, int maxValue);
};
-#endif // __WX_COCOA_SPINBUTT_H__
+#endif
+ // __WX_COCOA_SPINBUTT_H__