diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2008-12-13 18:31:54 +0000 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2008-12-13 18:31:54 +0000 |
| commit | 6ed54124bbff402944085568bb2fa2148a2eff62 (patch) | |
| tree | 1ad472de357454762751be0585d33a9d716eb5de /src/Fl_Widget.cxx | |
| parent | d9801ae479dfc9aa82f5121b3cbb74f875dd690a (diff) | |
Fixed typos and doxygen documentation.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6582 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_Widget.cxx')
| -rw-r--r-- | src/Fl_Widget.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Fl_Widget.cxx b/src/Fl_Widget.cxx index b0df5afa0..b0c9ce694 100644 --- a/src/Fl_Widget.cxx +++ b/src/Fl_Widget.cxx @@ -64,8 +64,8 @@ void Fl_Widget::default_callback(Fl_Widget *o, void * /*v*/) { } /** All Fl_Widgets that don't have a callback defined use a - default callback that puts a pointer to the widget in this queue, and - this method reads the oldest widget out of this queue. + default callback that puts a pointer to the widget in this queue, + and this method reads the oldest widget out of this queue. */ Fl_Widget *Fl::readqueue() { if (obj_tail==obj_head) return 0; @@ -80,7 +80,7 @@ int Fl_Widget::handle(int) { return 0; } -/** default font size for widgets */ +/** Default font size for widgets */ Fl_Fontsize FL_NORMAL_SIZE = 14; Fl_Widget::Fl_Widget(int X, int Y, int W, int H, const char* L) { @@ -147,7 +147,7 @@ Fl_Widget::~Fl_Widget() { fl_throw_focus(this); } -/** Draws a focus box for the widget at position X,Y and SIZE W,H . */ +/** Draws a focus box for the widget at position X,Y with size W,H. */ void Fl_Widget::draw_focus(Fl_Boxtype B, int X, int Y, int W, int H) const { if (!Fl::visible_focus()) return; |
