From df2a448ee308ccec998b8c76a19fe8cbf880a9ca Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Sat, 8 Feb 2014 01:10:44 +0000 Subject: [PATCH] Clarify docs of Fl_Widget::measure_label(). git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10096 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- FL/Fl_Widget.H | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/FL/Fl_Widget.H b/FL/Fl_Widget.H index d4bf6ff53..6f55652b4 100644 --- a/FL/Fl_Widget.H +++ b/FL/Fl_Widget.H @@ -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);}