From f7394e2fb1503b7f5a97ba7e3dffc15ee6bf8660 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Mon, 8 Jul 2002 15:20:57 +0000 Subject: Avoid VC++ bug with STL - "list" is a template class, but VC++ doesn't properly distinguish between type names and variable names... git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2492 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- FL/filename.H | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/FL/filename.H b/FL/filename.H index 56256ccee..86e1910bb 100644 --- a/FL/filename.H +++ b/FL/filename.H @@ -1,5 +1,5 @@ /* - * "$Id: filename.H,v 1.11.2.4.2.9 2002/06/26 12:03:28 easysw Exp $" + * "$Id: filename.H,v 1.11.2.4.2.10 2002/07/08 15:20:57 easysw Exp $" * * Filename header file for the Fast Light Tool Kit (FLTK). * @@ -92,8 +92,8 @@ typedef int (Fl_File_Sort_F)(struct dirent **, struct dirent **); * Portable "scandir" function. Ugly but necessary... */ -FL_EXPORT int fl_filename_list(const char *d, struct dirent ***list, - Fl_File_Sort_F *sort = fl_numericsort); +FL_EXPORT int fl_filename_list(const char *d, struct dirent ***l, + Fl_File_Sort_F *s = fl_numericsort); # endif /* __cplusplus */ /* @@ -116,5 +116,5 @@ FL_EXPORT int fl_filename_list(const char *d, struct dirent ***list, #endif /* FL_FILENAME_H */ /* - * End of "$Id: filename.H,v 1.11.2.4.2.9 2002/06/26 12:03:28 easysw Exp $". + * End of "$Id: filename.H,v 1.11.2.4.2.10 2002/07/08 15:20:57 easysw Exp $". */ -- cgit v1.2.3