/* Old names for compatibility */
#define wxRA_HORIZONTAL wxHORIZONTAL
#define wxRA_VERTICAL wxVERTICAL
-
-/* Use alternative object for single control */
-
-#define wxRA_USE_SUBSTITUTE 0x0010
+#define wxRA_USE_CHECKBOX 0x0010 /* alternative native subcontrols (wxPalmOS) */
/*
* wxRadioButton style flag
*/
#define wxRB_GROUP 0x0004
#define wxRB_SINGLE 0x0008
-#define wxRB_USE_SUBSTITUTE 0x0010
+#define wxRB_USE_CHECKBOX 0x0010 /* alternative native control (wxPalmOS) */
/*
* wxSlider flags
const wxString& name)
{
// replace native push button with native checkbox
- if ( style & wxRB_USE_SUBSTITUTE )
+ if ( style & wxRB_USE_CHECKBOX )
m_radioStyle = checkboxCtl;
if(!wxControl::Create(parent, id, pos, size, style, validator, name))