From dc4451c2c4f0079412f21b95ee6a8f4f57c5da78 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 27 Aug 2006 13:15:29 +0000 Subject: [PATCH] DFEC_UNIVERSAL is not available in DirectFB < 0.9.23, use wxCHECK_DFB_VERSION() around it git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40870 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/dfb/evtloop.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/dfb/evtloop.cpp b/src/dfb/evtloop.cpp index fcfeb0b25c..647e52ec7b 100644 --- a/src/dfb/evtloop.cpp +++ b/src/dfb/evtloop.cpp @@ -147,7 +147,9 @@ void wxEventLoop::HandleDFBEvent(const wxDFBEvent& event) case DFEC_NONE: case DFEC_INPUT: case DFEC_USER: +#if wxCHECK_DFB_VERSION(0,9,23) case DFEC_UNIVERSAL: +#endif { wxLogTrace(TRACE_EVENTS, _T("ignoring event of unsupported class %i"), -- 2.45.2