From: Vadim Zeitlin Date: Mon, 23 Jul 2012 15:03:52 +0000 (+0000) Subject: Fix wxUSE_IFILEDIALOG definition in wxUSE_DYNLIB_CLASS==0 case. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/5fce622a219897e1dde2586f74466cd123dd15e8 Fix wxUSE_IFILEDIALOG definition in wxUSE_DYNLIB_CLASS==0 case. wxUSE_XXX symbols such as this one need to be defined as 0 and not as nothing at all. Closes #14509. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72182 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/dirdlg.cpp b/src/msw/dirdlg.cpp index 7b29069c55..6b8e2027e1 100644 --- a/src/msw/dirdlg.cpp +++ b/src/msw/dirdlg.cpp @@ -50,7 +50,7 @@ #if wxUSE_DYNLIB_CLASS && !defined(__WXWINCE__) #define wxUSE_IFILEDIALOG 1 #else - #define wxUSE_IFILEDIALOG + #define wxUSE_IFILEDIALOG 0 #endif #if wxUSE_IFILEDIALOG