From 38016a11ad92f2069c47cfc81b1b73cc5cb5a65b Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 30 Oct 2014 12:56:31 +0000 Subject: [PATCH] Fixes to wxGA_TEXT and wxGA_PROGRESS documentation. Correct the HTML output format for wxGA_PROGRESS, it was indented incorrectly because Doxygen appears to need a blank line (i.e. end of paragraph) after a "@since". Also improve the wording of the styles descriptions a little. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@78081 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/wx/gauge.h | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/interface/wx/gauge.h b/interface/wx/gauge.h index d39e94416b..3cd5e49c76 100644 --- a/interface/wx/gauge.h +++ b/interface/wx/gauge.h @@ -49,13 +49,16 @@ Creates smooth progress bar with one pixel wide update step (not supported by all platforms). @style{wxGA_TEXT} - Display current completed percentage: text default format "%p%" - (only supported in wxQt, may be not available on all platforms). + Display the current value in percents in the gauge itself. This + style is only supported in wxQt and ignored under the other + platforms. @since 3.1.0 + @style{wxGA_PROGRESS} - Reflect the value of guage on the taskbar button, available since - Windows 7 only. + Reflect the value of gauge in the application taskbar button under + Windows 7 and later, ignored under the other platforms. @since 3.1.0 + @endStyleTable @library{wxcore}