From: Václav Slavík Date: Tue, 24 Jun 2003 18:08:02 +0000 (+0000) Subject: don't compile generic wxMessageDialog w/ GTK+2, it's not used (forgot to commit this) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/9d830d3ea19fb4bbbba32fb00af3e8dd8e10537e don't compile generic wxMessageDialog w/ GTK+2, it's not used (forgot to commit this) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21355 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/msgdlgg.cpp b/src/generic/msgdlgg.cpp index d63a6e1217..96b6cc0a67 100644 --- a/src/generic/msgdlgg.cpp +++ b/src/generic/msgdlgg.cpp @@ -20,7 +20,7 @@ #pragma hdrstop #endif -#if wxUSE_MSGDLG +#if wxUSE_MSGDLG && !defined(__WXGTK20__) #ifndef WX_PRECOMP #include "wx/utils.h" @@ -162,5 +162,5 @@ void wxGenericMessageDialog::OnCancel(wxCommandEvent& WXUNUSED(event)) } } -#endif // wxUSE_MSGDLG +#endif // wxUSE_MSGDLG && !defined(__WXGTK20__)