From 6c796f88c7459fa4262f936dc9c7c02fa01e95e7 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Mon, 25 Mar 2002 21:08:42 +0000 Subject: Rename all remaining functions that don't start with fl_ to fl_foo. (filename_xyz becomes fl_filename_xyz, down becomes fl_down, define_FL_PLASTIC_BOX becomes fl_define_FL_PLASTIC_BOX, etc.) git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2026 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/Fl_File_Icon2.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/Fl_File_Icon2.cxx') diff --git a/src/Fl_File_Icon2.cxx b/src/Fl_File_Icon2.cxx index 17190adf4..f1bb7f1bf 100644 --- a/src/Fl_File_Icon2.cxx +++ b/src/Fl_File_Icon2.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl_File_Icon2.cxx,v 1.1.2.12 2002/01/06 17:51:12 easysw Exp $" +// "$Id: Fl_File_Icon2.cxx,v 1.1.2.13 2002/03/25 21:08:41 easysw Exp $" // // Fl_File_Icon system icon routines. // @@ -91,7 +91,7 @@ Fl_File_Icon::load(const char *f) // I - File to read from const char *ext; // File extension - ext = filename_ext(f); + ext = fl_filename_ext(f); if (ext && strcmp(ext, ".fti") == 0) i = load_fti(f); @@ -758,7 +758,7 @@ load_kde_icons(const char *directory) // I - Directory to load entries = (dirent **)0; - n = filename_list(directory, &entries); + n = fl_filename_list(directory, &entries); for (i = 0; i < n; i ++) { @@ -768,7 +768,7 @@ load_kde_icons(const char *directory) // I - Directory to load strcat(full,"/"); strcat(full, entries[i]->d_name); - if (filename_isdir(full)) + if (fl_filename_isdir(full)) load_kde_icons(full); else load_kde_mimelnk(full); @@ -931,5 +931,5 @@ get_kde_val(char *str, // -// End of "$Id: Fl_File_Icon2.cxx,v 1.1.2.12 2002/01/06 17:51:12 easysw Exp $". +// End of "$Id: Fl_File_Icon2.cxx,v 1.1.2.13 2002/03/25 21:08:41 easysw Exp $". // -- cgit v1.2.3