Distrib things

Corrected wxPrivateDataObject a little
  Corrected wxRadioButton
  Corrected wrong defines of wxRadioBox styles


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3135 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1999-07-25 17:11:17 +00:00
parent 41bf0eb335
commit 0544bc0aab
12 changed files with 114 additions and 33 deletions

View File

@@ -706,18 +706,18 @@ enum
#define wxCB_DROPDOWN 0x0020
/*
* wxRadioBox/wxRadioButton style flags
* wxRadioBox style flags
*/
// New, more intuitive names to specify majorDim argument
// Same as wxRA_HORIZONTAL
#define wxRA_SPECIFY_COLS 0x0001
// Same as wxRA_VERTICAL
#define wxRA_SPECIFY_ROWS 0x0002
#define wxRA_SPECIFY_COLS wxHORIZONTAL
#define wxRA_SPECIFY_ROWS wxVERTICAL
// Old names for compatibility
#define wxRA_HORIZONTAL wxHORIZONTAL
#define wxRA_VERTICAL wxVERTICAL
/*
* wxRadioButton style flag
*/
#define wxRB_GROUP 0x0004
/*