From b594e94281fa13489692b1338e0ca969ebc46f9c Mon Sep 17 00:00:00 2001 From: Mark de Wever Date: Sun, 2 Jan 2011 16:38:29 +0000 Subject: [PATCH] Fix wiki comment, spotted by iwontbecreative. --- src/gui/dialogs/debug_clock.cpp | 35 +++++++++++++++++---------------- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/src/gui/dialogs/debug_clock.cpp b/src/gui/dialogs/debug_clock.cpp index fed4786458a..2b8627c29b7 100644 --- a/src/gui/dialogs/debug_clock.cpp +++ b/src/gui/dialogs/debug_clock.cpp @@ -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} */