Correct compilation for GTK < 2.4.
Remove double testing for __WXMGL__ and __WXX11__
after testing for __UNIVERSAL__
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39631 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
da452b9eec
commit
a84f5f39b8
3 changed files with 6 additions and 12 deletions
|
|
@ -179,6 +179,7 @@ wxSaveFileSelector(const wxChar *what,
|
|||
|
||||
|
||||
#if defined (__WXUNIVERSAL__)
|
||||
#define wxUSE_GENERIC_FILEDIALOG
|
||||
#include "wx/generic/filedlgg.h"
|
||||
#elif defined(__WXMSW__)
|
||||
#include "wx/msw/filedlg.h"
|
||||
|
|
@ -187,13 +188,10 @@ wxSaveFileSelector(const wxChar *what,
|
|||
#elif defined(__WXGTK24__)
|
||||
#include "wx/gtk/filedlg.h" // GTK+ > 2.4 has native version
|
||||
#elif defined(__WXGTK20__)
|
||||
#define wxUSE_GENERIC_FILEDIALOG
|
||||
#include "wx/generic/filedlgg.h"
|
||||
#elif defined(__WXGTK__)
|
||||
#include "wx/gtk1/filedlg.h"
|
||||
#elif defined(__WXX11__)
|
||||
#include "wx/generic/filedlgg.h"
|
||||
#elif defined(__WXMGL__)
|
||||
#include "wx/generic/filedlgg.h"
|
||||
#elif defined(__WXMAC__)
|
||||
#include "wx/mac/filedlg.h"
|
||||
#elif defined(__WXCOCOA__)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue