From 58ff32d5ad412c710827cbd20b1c44a2cbd02cc6 Mon Sep 17 00:00:00 2001 From: Bryan Petty Date: Wed, 10 Sep 2014 14:55:38 +0000 Subject: [PATCH] Fix docs nits. Author: Chaobin Zhang git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@77626 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/wx/taskbarbutton.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/interface/wx/taskbarbutton.h b/interface/wx/taskbarbutton.h index 1ff1e07c20..8939e73e7a 100644 --- a/interface/wx/taskbarbutton.h +++ b/interface/wx/taskbarbutton.h @@ -8,7 +8,7 @@ /** State of the taskbar button. */ -enum WXDLLIMPEXP_CORE wxTaskBarButtonState +enum wxTaskBarButtonState { wxTASKBAR_BUTTON_NO_PROGRESS = 0, wxTASKBAR_BUTTON_INDETERMINATE = 1, @@ -330,8 +330,8 @@ public: /** @class wxAppProgressIndicator - A helper class that can be used to update the progress bar in the - taskbar button. + + A helper class that can be used to update the progress bar in the taskbar button. @library{wxcore} @category{misc} @@ -371,15 +371,15 @@ public: /** Type of jump list item. */ -enum WXDLLIMPEXP_CORE wxTaskBarJumpListItemType +enum wxTaskBarJumpListItemType { - /* A separator, Only tasks category supports separators. */ + /** A separator, Only tasks category supports separators. */ wxTASKBAR_JUMP_LIST_SEPARATOR, - /* A task, represents a link to application. */ + /** A task, represents a link to application. */ wxTASKBAR_JUMP_LIST_TASK, - /* Item acts as a link to a file that the application can open. */ + /** Item acts as a link to a file that the application can open. */ wxTASKBAR_JUMP_LIST_DESTIONATION };