From: Włodzimierz Skiba Date: Tue, 22 Jun 2004 08:15:54 +0000 (+0000) Subject: Minimize diff for ports where features are not possible. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/6c1035d3c19b9df0f681205cec0eeb9395fbf8d9 Minimize diff for ports where features are not possible. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27933 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/dialogs/dialogs.h b/samples/dialogs/dialogs.h index a33f4ea9b4..c328fab591 100644 --- a/samples/dialogs/dialogs.h +++ b/samples/dialogs/dialogs.h @@ -42,7 +42,13 @@ ) -#define USE_MODAL_PRESENTATION 1 +#define USE_MODAL_PRESENTATION \ + ( \ + defined(__WXMSW__) || \ + defined(__WXMAC__) || \ + defined(__WXGTK__) || \ + defined(__WXPM__) \ + ) // Define a new application type class MyApp: public wxApp