summaryrefslogtreecommitdiff
path: root/src/Fl_Native_File_Chooser.cxx
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2016-04-20 04:49:36 +0000
committerManolo Gouy <Manolo>2016-04-20 04:49:36 +0000
commitae23f0cb5ee85a0950a3ec590ac415ff25df4564 (patch)
tree6e589e0e0a0bed21cd44e772da51be3f8977a727 /src/Fl_Native_File_Chooser.cxx
parent747e88abdc51c64c62a40b23ee40add3a2a9eff3 (diff)
Progress toward support of CMake OPTION_APPLE_SDL
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11673 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_Native_File_Chooser.cxx')
-rw-r--r--src/Fl_Native_File_Chooser.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Fl_Native_File_Chooser.cxx b/src/Fl_Native_File_Chooser.cxx
index 77000c887..b42a331b5 100644
--- a/src/Fl_Native_File_Chooser.cxx
+++ b/src/Fl_Native_File_Chooser.cxx
@@ -22,7 +22,8 @@
#ifdef FL_PORTING
# pragma message "Implement a native file chooser (see Fl_Native_File_Chooser_Driver), or use FLTK's chooser, or don't use any chooser"
Fl_Native_File_Chooser::Fl_Native_File_Chooser(int val) {
- platform_fnfc = new Fl_Native_File_Chooser_FLTK_Driver(val);
+ //platform_fnfc = new Fl_Native_File_Chooser_FLTK_Driver(val); // do this to use FLTK's default file chooser
+ platform_fnfc = 0; // do this so class Fl_Native_File_Chooser does nothing
}
#endif