From 29a9e89b39c2fdc1f9498717f5ae53798528ffb1 Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Sat, 26 Mar 2016 02:55:14 +0000 Subject: Remove FLTK_ABI_VERSION from all but *tree*.* and documentation. Everything related to Fl_Tree and its test and demo programs has been cleaned. Documentation needs updates. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11428 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/Fl_Native_File_Chooser_WIN32.cxx | 9 --------- 1 file changed, 9 deletions(-) (limited to 'src/Fl_Native_File_Chooser_WIN32.cxx') diff --git a/src/Fl_Native_File_Chooser_WIN32.cxx b/src/Fl_Native_File_Chooser_WIN32.cxx index da425339a..7cd50e7dd 100644 --- a/src/Fl_Native_File_Chooser_WIN32.cxx +++ b/src/Fl_Native_File_Chooser_WIN32.cxx @@ -24,11 +24,6 @@ #ifndef FL_DOXYGEN // PREVENT DOXYGEN'S USE OF THIS FILE #include -#if FLTK_ABI_VERSION < 10304 -#define _ofn_ptr (&_ofn) -#define _binf_ptr (&_binf) -#endif - #include // malloc #include // sprintf #include @@ -133,10 +128,8 @@ static void dnullcat(char*&wp, const char *string, int n = -1 ) { Fl_Native_File_Chooser::Fl_Native_File_Chooser(int val) { _btype = val; _options = NO_OPTIONS; -#if FLTK_ABI_VERSION >= 10304 _ofn_ptr = new OPENFILENAMEW; _binf_ptr = new BROWSEINFOW; -#endif memset((void*)_ofn_ptr, 0, sizeof(OPENFILENAMEW)); _ofn_ptr->lStructSize = sizeof(OPENFILENAMEW); _ofn_ptr->hwndOwner = 0L; @@ -167,10 +160,8 @@ Fl_Native_File_Chooser::~Fl_Native_File_Chooser() { clear_pathnames(); ClearOFN(); ClearBINF(); -#if FLTK_ABI_VERSION >= 10304 delete _binf_ptr; delete _ofn_ptr; -#endif } // SET TYPE OF BROWSER -- cgit v1.2.3