]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/doxygen/overviews/xrc_format.h
When the focus object changes, the old selection should be
[wxWidgets.git] / docs / doxygen / overviews / xrc_format.h
index 72d5405f4acc02a923cc0f2ff2fb8d78f5443a19..677bb9e83fd809acdf3ffd2f6a77f299316efda2 100644 (file)
@@ -1589,6 +1589,11 @@ No additional properties.
 @endTable
 
 
+@subsubsection xrc_wxtimepickerctrl wxTimePickerCtrl
+
+No additional properties.
+
+
 @subsubsection xrc_wxtogglebuttton wxToggleButton
 
 @beginTable
@@ -1649,6 +1654,8 @@ properties:
     Help text shown in statusbar when the mouse is on the tool (default: none).}
 @row3col{disabled, @ref overview_xrcformat_type_bool,
      Is the tool initially disabled (default: 0)?}
+@row3col{checked, @ref overview_xrcformat_type_bool,
+     Is the tool initially checked (default: 0)? (only available since wxWidgets 2.9.3)}
 @endTable
 
 The presence of a @c dropdown property indicates that the tool is of type
@@ -2140,7 +2147,7 @@ Whether a range has positive or negative IDs, [start] is always a smaller
 number than [end]; so code like this works as expected:
 
 @code
-for (int n=XRCID("foo[start]"); n < XRCID("foo[end]"); ++n)
+for (int n=XRCID("foo[start]"); n <= XRCID("foo[end]"); ++n)
     ...
 @endcode