]> git.saurik.com Git - wxWidgets.git/commitdiff
Readable style name.
authorWłodzimierz Skiba <abx@abx.art.pl>
Tue, 1 Feb 2005 15:10:59 +0000 (15:10 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Tue, 1 Feb 2005 15:10:59 +0000 (15:10 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31693 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/defs.h
src/palmos/radiobut.cpp

index 32572213e63dc4eeee0bdc3bdd7ad17d7c43872d..aef702f39796104c7a8fb4841f15c66496362ffb 100644 (file)
@@ -1418,17 +1418,14 @@ enum wxBorder
 /*  Old names for compatibility */
 #define wxRA_HORIZONTAL     wxHORIZONTAL
 #define wxRA_VERTICAL       wxVERTICAL
 /*  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
 
 /*
  * 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
 
 /*
  * wxSlider flags
index 3a344102aaafacb7e4cdb0c1ea5920ad37027a9e..e18998576201bbd10a8616d1e64b49fd8ad6b48a 100644 (file)
@@ -115,7 +115,7 @@ bool wxRadioButton::Create(wxWindow *parent,
                            const wxString& name)
 {
     // replace native push button with native checkbox
                            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))
         m_radioStyle = checkboxCtl;
 
     if(!wxControl::Create(parent, id, pos, size, style, validator, name))