X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/5e6b39c9d63999efa0b3e82d9cee788748aaaee3..9869c26285dc51d13607cddaa04f65ce983653a5:/include/wx/msw/notifmsg.h diff --git a/include/wx/msw/notifmsg.h b/include/wx/msw/notifmsg.h index d39fbbd7c4..b7e0e0e867 100644 --- a/include/wx/msw/notifmsg.h +++ b/include/wx/msw/notifmsg.h @@ -3,7 +3,6 @@ // Purpose: implementation of wxNotificationMessage for Windows // Author: Vadim Zeitlin // Created: 2007-12-01 -// RCS-ID: $Id$ // Copyright: (c) 2007 Vadim Zeitlin // Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// @@ -23,8 +22,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 +67,7 @@ private: class wxNotifMsgImpl *m_impl; - DECLARE_NO_COPY_CLASS(wxNotificationMessage) + wxDECLARE_NO_COPY_CLASS(wxNotificationMessage); }; #endif // _WX_MSW_NOTIFMSG_H_