summaryrefslogtreecommitdiff
path: root/src/fl_boxtype.cxx
diff options
context:
space:
mode:
authorengelsman <engelsman>2009-03-21 17:08:23 +0000
committerengelsman <engelsman>2009-03-21 17:08:23 +0000
commitced863d33417eef19dd97464eb4585d37a00d7f6 (patch)
treef0f54dcc3f6effd4d78d2816dcb96989dc5708b5 /src/fl_boxtype.cxx
parent13bbc8a0c61157327ab6c60753eb1abd68099209 (diff)
converted html tags to doxygen commands in documentation/src/subclassing.dox
this also required tweaking parameter names and doxygen comments in Fl_Widget.H, Fl_Group.H, Fl_Widget.cxx and fl_boxtype.cxx git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6705 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/fl_boxtype.cxx')
-rw-r--r--src/fl_boxtype.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/fl_boxtype.cxx b/src/fl_boxtype.cxx
index 4c853bf2d..bbd960eb6 100644
--- a/src/fl_boxtype.cxx
+++ b/src/fl_boxtype.cxx
@@ -408,14 +408,14 @@ void Fl_Widget::draw_box() const {
// }
draw_box((Fl_Boxtype)t, x_, y_, w_, h_, (Fl_Color)color_);
}
-/** Draws a box of type b, of color c at the widget's position and size. */
-void Fl_Widget::draw_box(Fl_Boxtype b, Fl_Color c) const {
- draw_box(b, x_, y_, w_, h_, c);
+/** Draws a box of type t, of color c at the widget's position and size. */
+void Fl_Widget::draw_box(Fl_Boxtype t, Fl_Color c) const {
+ draw_box(t, x_, y_, w_, h_, c);
}
-/** Draws a box of type b, of color c at the position X,Y and size W,H. */
-void Fl_Widget::draw_box(Fl_Boxtype b, int X, int Y, int W, int H, Fl_Color c) const {
+/** Draws a box of type t, of color c at the position X,Y and size W,H. */
+void Fl_Widget::draw_box(Fl_Boxtype t, int X, int Y, int W, int H, Fl_Color c) const {
draw_it_active = active_r();
- fl_box_table[b].f(X, Y, W, H, c);
+ fl_box_table[t].f(X, Y, W, H, c);
draw_it_active = 1;
}