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_rounded_box.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/fl_rounded_box.cxx') diff --git a/src/fl_rounded_box.cxx b/src/fl_rounded_box.cxx index 1b5af13b9..79330eded 100644 --- a/src/fl_rounded_box.cxx +++ b/src/fl_rounded_box.cxx @@ -1,5 +1,5 @@ // -// "$Id: fl_rounded_box.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:32 easysw Exp $" +// "$Id: fl_rounded_box.cxx,v 1.4.2.3.2.2 2002/03/25 21:08:42 easysw Exp $" // // Rounded box drawing routines for the Fast Light Tool Kit (FLTK). // @@ -76,22 +76,22 @@ static void fl_rshadow_box(int x, int y, int w, int h, Fl_Color c) { extern void fl_internal_boxtype(Fl_Boxtype, Fl_Box_Draw_F*); -Fl_Boxtype define_FL_ROUNDED_BOX() { +Fl_Boxtype fl_define_FL_ROUNDED_BOX() { fl_internal_boxtype(_FL_ROUNDED_FRAME, fl_rounded_frame); fl_internal_boxtype(_FL_ROUNDED_BOX, fl_rounded_box); return _FL_ROUNDED_BOX; } -Fl_Boxtype define_FL_RFLAT_BOX() { +Fl_Boxtype fl_define_FL_RFLAT_BOX() { fl_internal_boxtype(_FL_RFLAT_BOX, fl_rflat_box); return _FL_RFLAT_BOX; } -Fl_Boxtype define_FL_RSHADOW_BOX() { +Fl_Boxtype fl_define_FL_RSHADOW_BOX() { fl_internal_boxtype(_FL_RSHADOW_BOX, fl_rshadow_box); return _FL_RSHADOW_BOX; } // -// End of "$Id: fl_rounded_box.cxx,v 1.4.2.3.2.1 2002/01/01 15:11:32 easysw Exp $". +// End of "$Id: fl_rounded_box.cxx,v 1.4.2.3.2.2 2002/03/25 21:08:42 easysw Exp $". // -- cgit v1.2.3