Add documentation for wxNotificationMessage::UseTaskBarIcon (MSW).

The method is not new, but was undocumented previously.
This commit is contained in:
Tobias Taschner 2015-09-14 20:44:53 +02:00
parent bf5e403a68
commit 816c58e0af

View File

@ -158,5 +158,17 @@ public:
@return @false if an error occurred.
*/
virtual bool Show(int timeout = Timeout_Auto);
/**
If the application already uses a wxTaskBarIcon, it should be connected
to notifications by using this method. This has no effect if toast
notifications are used.
@return the task bar icon which was used previously (may be @c NULL)
@onlyfor{wxmsw}
*/
static wxTaskBarIcon *UseTaskBarIcon(wxTaskBarIcon *icon);
};