From: Vadim Zeitlin Date: Mon, 20 Feb 2012 21:56:52 +0000 (+0000) Subject: Document wxNotificationMessage::Timeout_XXX values. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/1e26459c5e72eb33485fe9919b2a4aaafd01e76b Document wxNotificationMessage::Timeout_XXX values. Closes #14009. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70650 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/interface/wx/notifmsg.h b/interface/wx/notifmsg.h index 40e039bf9e..68a8d1ab73 100644 --- a/interface/wx/notifmsg.h +++ b/interface/wx/notifmsg.h @@ -24,6 +24,13 @@ class wxNotificationMessage : public wxEvtHandler { public: + /// Possible values for Show() timeout. + enum + { + Timeout_Auto = -1, ///< Notification will be hidden automatically. + Timeout_Never = 0 ///< Notification will never time out. + }; + /** Default constructor, use SetParent(), SetTitle() and SetMessage() to initialize the object before showing it.