From df405da528881ee0c0dce1cb6e21842d5d6f5f30 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Thu, 20 Dec 2007 19:34:58 +0000 Subject: [PATCH] fixed wxHAS_GENERIC_PROCESS_CALLBACK check to use #ifdef, not #if git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50865 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/unix/utilsunx.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unix/utilsunx.cpp b/src/unix/utilsunx.cpp index 589abf242a..12d1e9eb06 100644 --- a/src/unix/utilsunx.cpp +++ b/src/unix/utilsunx.cpp @@ -1440,7 +1440,7 @@ int wxGUIAppTraits::WaitForChild(wxExecuteData& execData) } } -#if wxHAS_GENERIC_PROCESS_CALLBACK +#ifdef wxHAS_GENERIC_PROCESS_CALLBACK struct wxEndProcessFDIOHandler : public wxFDIOHandler { wxEndProcessFDIOHandler(wxEndProcessData *data, int fd) -- 2.50.0