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_diamond_box.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_diamond_box.cxx')
| -rw-r--r-- | src/fl_diamond_box.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fl_diamond_box.cxx b/src/fl_diamond_box.cxx index 5fd44ce3d..8621e7247 100644 --- a/src/fl_diamond_box.cxx +++ b/src/fl_diamond_box.cxx @@ -1,5 +1,5 @@ // -// "$Id: fl_diamond_box.cxx,v 1.5.2.3.2.1 2002/01/01 15:11:32 easysw Exp $" +// "$Id: fl_diamond_box.cxx,v 1.5.2.3.2.2 2002/03/25 21:08:42 easysw Exp $" // // Diamond box code for the Fast Light Tool Kit (FLTK). // @@ -67,12 +67,12 @@ static void fl_diamond_down_box(int x,int y,int w,int h,Fl_Color bgcolor) { } extern void fl_internal_boxtype(Fl_Boxtype, Fl_Box_Draw_F*); -Fl_Boxtype define_FL_DIAMOND_BOX() { +Fl_Boxtype fl_define_FL_DIAMOND_BOX() { fl_internal_boxtype(_FL_DIAMOND_DOWN_BOX, fl_diamond_down_box); fl_internal_boxtype(_FL_DIAMOND_UP_BOX,fl_diamond_up_box); return _FL_DIAMOND_UP_BOX; } // -// End of "$Id: fl_diamond_box.cxx,v 1.5.2.3.2.1 2002/01/01 15:11:32 easysw Exp $". +// End of "$Id: fl_diamond_box.cxx,v 1.5.2.3.2.2 2002/03/25 21:08:42 easysw Exp $". // |
