From 77cc7b147ae1a8610f7531263e81dc0fb949c830 Mon Sep 17 00:00:00 2001 From: Manolo Gouy Date: Mon, 26 Mar 2018 08:20:17 +0000 Subject: Documentation: give more detail for Fl_Image::w(int W) and Fl_Image::h(int H) git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12802 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- FL/Fl_Image.H | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/FL/Fl_Image.H b/FL/Fl_Image.H index beb22f719..41783639d 100644 --- a/FL/Fl_Image.H +++ b/FL/Fl_Image.H @@ -82,10 +82,14 @@ protected: /** Sets the width of the image data. + This protected function sets both image widths: the width of the image data returned by data_w() and + the image drawing width in FLTK units returned by w(). */ void w(int W) {w_ = W; data_w_ = W;} /** Sets the height of the image data. + This protected function sets both image heights: the height of the image data returned by data_h() and + the image drawing height in FLTK units returned by h(). */ void h(int H) {h_ = H; data_h_ = H;} /** -- cgit v1.2.3