]> git.saurik.com Git - wxWidgets.git/commitdiff
Added wxRA_SPECIFY_COLS/ROWS (same as wxRA_HORIZONTAL/VERTICAL)
authorJulian Smart <julian@anthemion.co.uk>
Thu, 17 Dec 1998 21:05:28 +0000 (21:05 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Thu, 17 Dec 1998 21:05:28 +0000 (21:05 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1229 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/defs.h

index 74aba1c33488447ee685229931bb8f391ff6b1a0..102264dc2d83f61f007a9e36c8e864f4d5573456 100644 (file)
@@ -463,6 +463,15 @@ typedef void (*wxFunction) (wxObject&, wxEvent&);
 /*
  * wxRadioBox/wxRadioButton 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
+
+// Old names for compatibility
 #define wxRA_HORIZONTAL     wxHORIZONTAL
 #define wxRA_VERTICAL       wxVERTICAL
 #define wxRB_GROUP          0x0004