X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c589dc030dd1f0b9f2360e55920353fd1781ceab..ad653fa23069c5d9378247084f03c9a718c3ad62:/src/gtk/notifmsg.cpp diff --git a/src/gtk/notifmsg.cpp b/src/gtk/notifmsg.cpp index d50dee2140..10d0d7a678 100644 --- a/src/gtk/notifmsg.cpp +++ b/src/gtk/notifmsg.cpp @@ -25,11 +25,12 @@ #if wxUSE_NOTIFICATION_MESSAGE && wxUSE_LIBNOTIFY +#include "wx/notifmsg.h" + #ifndef WX_PRECOMP + #include "wx/app.h" #endif // WX_PRECOMP -#include "wx/notifmsg.h" - #include #include "wx/module.h" @@ -138,6 +139,13 @@ bool wxNotificationMessage::Show(int timeout) GetTitle().utf8_str(), GetMessage().utf8_str(), icon +#if !wxUSE_LIBNOTIFY_0_7 + // There used to be an "associated window" + // parameter in this function but it has + // disappeared by 0.7, so use it for previous + // versions only. + , 0 +#endif // libnotify < 0.7 ); if ( !m_notification ) {