Fix wiki comment, spotted by iwontbecreative.

This commit is contained in:
Mark de Wever 2011-01-02 16:38:29 +00:00
parent f9db9aaeef
commit b594e94281

View File

@ -39,33 +39,34 @@ namespace gui2 {
*
* @begin{table}{dialog_widgets}
* hour_percentage & & progress_bar & o &
* This shows the hours as a percentage, where 24 hours is 100%. $
* This shows the hours as a percentage, where 24 hours is 100%. $
* minute_percentage & & progress_bar & o &
* This shows the minutes as a percentage, where 60 minutes is 100%. $
* This shows the minutes as a percentage, where 60 minutes is 100%. $
* second_percentage & & progress_bar & o &
* This shows the seconds as a percentage, where 60 seconds is 100%. $
* This shows the seconds as a percentage, where 60 seconds is 100%. $
*
* hour & & integer_selector & o &
* This shows the seconds since the beginning of the day. The control
* should have a ''minimum_value'' of 0 and a ''maximum_value'' of 86399
* (24 * 60 * 60 - 1).
* This shows the seconds since the beginning of the day. The control
* should have a ''minimum_value'' of 0 and a ''maximum_value'' of 86399
* (24 * 60 * 60 - 1). $
*
* minute & & integer_selector & o &
* This shows the seconds since the beginning of the current hour. The
* control should have a ''minimum_value'' of 0 and a ''maximum_value'' of
* 3599 (60 * 60 - 1).
* This shows the seconds since the beginning of the current hour. The
* control should have a ''minimum_value'' of 0 and a ''maximum_value''
* of 3599 (60 * 60 - 1). $
*
* minute & & integer_selector & o &
* This shows the seconds since the beginning of the current minute. The
* control should have a ''minimum_value'' of 0 and a ''maximum_value'' of
* 59.
* This shows the seconds since the beginning of the current minute. The
* control should have a ''minimum_value'' of 0 and a ''maximum_value''
* of 59. $
*
* clock & & control & o &
* A control which will have set three variables in its canvas:
* @* hour, the same value as the hour integer_selector.
* @* minute, the same value as the minute integer_selector.
* @* second, the same value as the second integer_selector.
* @- the control can then should the time in its own preferred format(s).
* A control which will have set three variables in its canvas:
* @* hour, the same value as the hour integer_selector.
* @* minute, the same value as the minute integer_selector.
* @* second, the same value as the second integer_selector.
* @- the control can then should the time in its own preferred
* format(s). $
* @end{table}
*/