Document wxNotificationMessage::Timeout_XXX values.

Closes #14009.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70650 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2012-02-20 21:56:52 +00:00
parent c9069ea343
commit 1e26459c5e

View File

@@ -24,6 +24,13 @@
class wxNotificationMessage : public wxEvtHandler class wxNotificationMessage : public wxEvtHandler
{ {
public: 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 Default constructor, use SetParent(), SetTitle() and SetMessage() to
initialize the object before showing it. initialize the object before showing it.