summaryrefslogtreecommitdiff
path: root/src/Fl_File_Chooser2.cxx
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2005-11-27 14:45:48 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2005-11-27 14:45:48 +0000
commite321cb37bfe0379f54010eb42a36573ca561e71f (patch)
tree8859d1296934461dc33abddc49701f5bbdc53124 /src/Fl_File_Chooser2.cxx
parentf9f2de35726988a6fd9d3b226dc683c394c1d65c (diff)
VC++ 2005 Support, drop old files, add icons for Sudoku
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4660 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_File_Chooser2.cxx')
-rw-r--r--src/Fl_File_Chooser2.cxx10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/Fl_File_Chooser2.cxx b/src/Fl_File_Chooser2.cxx
index a761e52f6..648d8a7ab 100644
--- a/src/Fl_File_Chooser2.cxx
+++ b/src/Fl_File_Chooser2.cxx
@@ -62,6 +62,10 @@
#if defined(WIN32) && ! defined (__CYGWIN__)
# include <direct.h>
# include <io.h>
+// Visual C++ 2005 incorrectly displays a warning about the use of POSIX APIs
+// on Windows, which is supposed to be POSIX compliant...
+# define access _access
+# define mkdir _mkdir
// Apparently Borland C++ defines DIRECTORY in <direct.h>, which
// interfers with the Fl_File_Icon enumeration of the same name.
# ifdef DIRECTORY
@@ -608,7 +612,7 @@ Fl_File_Chooser::fileNameCB()
file = fileList->text(i);
#if (defined(WIN32) && ! defined(__CYGWIN__)) || defined(__EMX__)
- if (strnicmp(filename, file, min_match) == 0) {
+ if (strncasecmp(filename, file, min_match) == 0) {
#else
if (strncmp(filename, file, min_match) == 0) {
#endif // WIN32 || __EMX__
@@ -631,7 +635,7 @@ Fl_File_Chooser::fileNameCB()
// Succeeding match; compare to find maximum string match...
while (max_match > min_match)
#if (defined(WIN32) && ! defined(__CYGWIN__)) || defined(__EMX__)
- if (strnicmp(file, matchname, max_match) == 0)
+ if (strncasecmp(file, matchname, max_match) == 0)
#else
if (strncmp(file, matchname, max_match) == 0)
#endif // WIN32 || __EMX__
@@ -1187,7 +1191,7 @@ compare_dirnames(const char *a, const char *b) {
// Do a comparison of the first N chars (alen == blen at this point)...
#ifdef WIN32
- return strnicmp(a, b, alen);
+ return strncasecmp(a, b, alen);
#else
return strncmp(a, b, alen);
#endif // WIN32