summaryrefslogtreecommitdiff
path: root/src/Fl_Native_File_Chooser.cxx
diff options
context:
space:
mode:
authorGreg Ercolano <erco@seriss.com>2010-01-14 20:47:59 +0000
committerGreg Ercolano <erco@seriss.com>2010-01-14 20:47:59 +0000
commitf910c1c181205b9005a1ad91eac6d963eb9919a9 (patch)
tree2d03182b995302f35748689ca4a56c8f47b1fc14 /src/Fl_Native_File_Chooser.cxx
parent209e1bfea12f291b58a1404938b05f35e5ec1d6d (diff)
Fl_Native_File_Chooser follow up maintenance.
* doxygen docs added * Changed all FNFC_XXX macros to full Fl_Native_File_Chooser names for doxygen * Added missing svn $Id tags * Small mods to Manolo's old_dir[] in Fl_Native_File_Chooser_FLTK to use a dynamic string instead of old_dir[300] git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7003 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
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