summaryrefslogtreecommitdiff
path: root/FL
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 /FL
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 'FL')
-rw-r--r--FL/Fl_Group.H6
-rw-r--r--FL/Fl_Widget.H6
2 files changed, 6 insertions, 6 deletions
diff --git a/FL/Fl_Group.H b/FL/Fl_Group.H
index 314372fac..1037897e2 100644
--- a/FL/Fl_Group.H
+++ b/FL/Fl_Group.H
@@ -61,10 +61,10 @@ protected:
enum { CLIP_CHILDREN = 2048 };
void draw();
- void draw_child(Fl_Widget&) const;
+ void draw_child(Fl_Widget& widget) const;
void draw_children();
- void draw_outside_label(const Fl_Widget&) const ;
- void update_child(Fl_Widget&) const;
+ void draw_outside_label(const Fl_Widget& widget) const ;
+ void update_child(Fl_Widget& widget) const;
int *sizes();
public:
diff --git a/FL/Fl_Widget.H b/FL/Fl_Widget.H
index bb906f212..c7140657c 100644
--- a/FL/Fl_Widget.H
+++ b/FL/Fl_Widget.H
@@ -153,11 +153,11 @@ protected:
COPIED_LABEL=1024 ///< the widget label is internally copied, its destruction is handled by the widget
};
void draw_box() const;
- void draw_box(Fl_Boxtype, Fl_Color) const;
- void draw_box(Fl_Boxtype, int,int,int,int, Fl_Color) const;
+ void draw_box(Fl_Boxtype t, Fl_Color c) const;
+ void draw_box(Fl_Boxtype t, int x,int y,int w,int h, Fl_Color c) const;
/** draws a focus rectangle around the widget */
void draw_focus() {draw_focus(box(),x(),y(),w(),h());}
- void draw_focus(Fl_Boxtype, int,int,int,int) const;
+ void draw_focus(Fl_Boxtype t, int x,int y,int w,int h) const;
void draw_label() const;
void draw_label(int, int, int, int) const;