diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-03-25 21:08:42 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-03-25 21:08:42 +0000 |
| commit | 6c796f88c7459fa4262f936dc9c7c02fa01e95e7 (patch) | |
| tree | 9f1d5d4e8e4f4f709f11f3c95701c14e41a3483c /src/Fl_win32.cxx | |
| parent | d7f353ddd120228a1a4444ff0dec2146de7cd980 (diff) | |
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
Diffstat (limited to 'src/Fl_win32.cxx')
| -rw-r--r-- | src/Fl_win32.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Fl_win32.cxx b/src/Fl_win32.cxx index b399f50f9..ef007331c 100644 --- a/src/Fl_win32.cxx +++ b/src/Fl_win32.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl_win32.cxx,v 1.33.2.37.2.21 2002/03/25 19:35:13 easysw Exp $" +// "$Id: Fl_win32.cxx,v 1.33.2.37.2.22 2002/03/25 21:08:41 easysw Exp $" // // WIN32-specific code for the Fast Light Tool Kit (FLTK). // @@ -1062,10 +1062,10 @@ void Fl_X::set_minmax(LPMINMAXINFO minmax) //////////////////////////////////////////////////////////////// -#include <FL/filename.H> // need so FL_EXPORT filename_name works +#include <FL/filename.H> // need so FL_EXPORT fl_filename_name works // returns pointer to the filename, or null if name ends with '/' -const char *filename_name(const char *name) { +const char *fl_filename_name(const char *name) { const char *p,*q; q = name; if (q[0] && q[1]==':') q += 2; // skip leading drive letter @@ -1079,7 +1079,7 @@ void Fl_Window::label(const char *name,const char *iname) { if (shown() && !parent()) { if (!name) name = ""; SetWindowText(i->xid, name); - // if (!iname) iname = filename_name(name); + // if (!iname) iname = fl_filename_name(name); // should do something with iname here... } } @@ -1156,5 +1156,5 @@ void Fl_Window::make_current() { } // -// End of "$Id: Fl_win32.cxx,v 1.33.2.37.2.21 2002/03/25 19:35:13 easysw Exp $". +// End of "$Id: Fl_win32.cxx,v 1.33.2.37.2.22 2002/03/25 21:08:41 easysw Exp $". // |
