summaryrefslogtreecommitdiff
path: root/FL
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2023-02-02 19:14:14 +0100
committerAlbrecht Schlosser <albrechts.fltk@online.de>2023-02-02 19:14:14 +0100
commit796ff44268893a010def65b77ed32b08bcdef191 (patch)
tree0e189a34a1f0308333b3e203a27e06f06c2a3ba2 /FL
parent32b6c04bcf4f9977b38a15e84739e8395f57e97b (diff)
Fix documentation of FL/Fl_Box.H
Diffstat (limited to 'FL')
-rw-r--r--FL/Fl_Box.H20
1 files changed, 10 insertions, 10 deletions
diff --git a/FL/Fl_Box.H b/FL/Fl_Box.H
index 050be02cc..56e1ff5ce 100644
--- a/FL/Fl_Box.H
+++ b/FL/Fl_Box.H
@@ -1,7 +1,7 @@
//
// Box header file for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2010 by Bill Spitzak and others.
+// Copyright 1998-2023 by Bill Spitzak and others.
//
// This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this
@@ -14,8 +14,9 @@
// https://www.fltk.org/bugs.php
//
-/* \file
- Fl_Box widget . */
+/** \file FL/Fl_Box.H
+ \brief Fl_Box widget.
+*/
#ifndef Fl_Box_H
#define Fl_Box_H
@@ -34,13 +35,12 @@ protected:
void draw() FL_OVERRIDE;
public:
/**
- - The first constructor sets box() to FL_NO_BOX, which
- means it is invisible. However such widgets are useful as placeholders
- or Fl_Group::resizable()
- values. To change the box to something visible, use box(n).
- - The second form of the constructor sets the box to the specified box
- type.
- <P>The destructor removes the box.
+ - The first constructor sets box() to FL_NO_BOX, which means it is invisible.
+ However such widgets are useful as placeholders or Fl_Group::resizable()
+ values. To change the box to something visible, use box(n).
+ - The second form of the constructor sets the box to the specified box type.
+
+ The destructor removes the box.
*/
Fl_Box(int X, int Y, int W, int H, const char *l=0);