summaryrefslogtreecommitdiff
path: root/src/Fl_Native_File_Chooser.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/Fl_Native_File_Chooser.cxx')
-rw-r--r--src/Fl_Native_File_Chooser.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Fl_Native_File_Chooser.cxx b/src/Fl_Native_File_Chooser.cxx
index a7071a532..898760d49 100644
--- a/src/Fl_Native_File_Chooser.cxx
+++ b/src/Fl_Native_File_Chooser.cxx
@@ -26,7 +26,7 @@
//
// Use Windows' chooser
-#ifdef _WIN32
+#ifdef WIN32
#include "Fl_Native_File_Chooser_WIN32.cxx"
#endif
@@ -36,7 +36,7 @@
#endif
// All else falls back to FLTK's own chooser
-#if ! defined(__APPLE__) && !defined(_WIN32)
+#if ! defined(__APPLE__) && !defined(WIN32)
#include "Fl_Native_File_Chooser_FLTK.cxx"
#endif