don't use the native implementation if wxTaskBarIcon::ShowBalloon() is not available

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2007-12-09 22:32:12 +00:00
parent 82287aae32
commit 01b7f8f29f

View File

@ -23,7 +23,10 @@
#pragma hdrstop
#endif
#if wxUSE_NOTIFICATION_MESSAGE && wxUSE_TASKBARICON
// we can only use the native implementation if we have a working
// wxTaskBarIcon::ShowBalloon() method
#if wxUSE_NOTIFICATION_MESSAGE && \
wxUSE_TASKBARICON && wxUSE_TASKBARICON_BALLOONS
#include "wx/notifmsg.h"