summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-07-08 15:20:57 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-07-08 15:20:57 +0000
commitf7394e2fb1503b7f5a97ba7e3dffc15ee6bf8660 (patch)
treebddb3e088a23de8cb20888628144658d313362ad
parent16046bf4ddb21381968b7333318e58b6438c89ac (diff)
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
-rw-r--r--FL/filename.H8
1 files 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 $".
*/