X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/5e6b39c9d63999efa0b3e82d9cee788748aaaee3..ca77701441e39245dcbfce903049e76f166979e5:/include/wx/msw/notifmsg.h?ds=sidebyside diff --git a/include/wx/msw/notifmsg.h b/include/wx/msw/notifmsg.h index d39fbbd7c4..91de9bf455 100644 --- a/include/wx/msw/notifmsg.h +++ b/include/wx/msw/notifmsg.h @@ -23,8 +23,9 @@ public: wxNotificationMessage() { Init(); } wxNotificationMessage(const wxString& title, const wxString& message = wxString(), - wxWindow *parent = NULL) - : wxNotificationMessageBase(title, message, parent) + wxWindow *parent = NULL, + int flags = wxICON_INFORMATION) + : wxNotificationMessageBase(title, message, parent, flags) { Init(); } @@ -67,7 +68,7 @@ private: class wxNotifMsgImpl *m_impl; - DECLARE_NO_COPY_CLASS(wxNotificationMessage) + wxDECLARE_NO_COPY_CLASS(wxNotificationMessage); }; #endif // _WX_MSW_NOTIFMSG_H_