// Author: David Elliott
// Modified by:
// Created: 2003/03/18
-// RCS-ID: $Id$
// Copyright: (c) 2003 David Elliott
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// ========================================================================
// wxRadioBox
// ========================================================================
-class WXDLLEXPORT wxRadioBox: public wxControl, public wxRadioBoxBase// , protected wxCocoaNSButton
+class WXDLLIMPEXP_CORE wxRadioBox: public wxControl, public wxRadioBoxBase// , protected wxCocoaNSButton
{
DECLARE_DYNAMIC_CLASS(wxRadioBox)
DECLARE_EVENT_TABLE()
// Cocoa callbacks
// ------------------------------------------------------------------------
protected:
- // Static boxes cannot be enabled/disabled
- virtual void CocoaSetEnabled(bool enable) { }
+ // Radio boxes cannot be enabled/disabled
+ virtual void CocoaSetEnabled(bool WXUNUSED(enable)) { }
virtual void CocoaTarget_action(void);
// ------------------------------------------------------------------------
// Implementation
virtual void SetString(unsigned int n, const wxString& label);
// change the individual radio button state
protected:
- // We don't want the typical wxCocoaNSBox behavior because our real
+ // We don't want the typical wxCocoaNSBox behaviour because our real
// implementation is by using an NSMatrix as the NSBox's contentView.
WX_NSMatrix GetNSMatrix() const;
void AssociateNSBox(WX_NSBox theBox);