Clarify docs of Fl_Widget::measure_label().

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10096 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Albrecht Schlosser 2014-02-08 01:10:44 +00:00
parent ef952dfa53
commit df2a448ee3
1 changed files with 4 additions and 0 deletions

View File

@ -916,6 +916,10 @@ public:
/** Sets width ww and height hh accordingly with the label size.
Labels with images will return w() and h() of the image.
This calls fl_measure() internally. For more information about
the arguments \p ww and \p hh and word wrapping
\see fl_measure(const char*, int&, int&, int)
*/
void measure_label(int& ww, int& hh) const {label_.measure(ww, hh);}