diff options
| author | Manolo Gouy <Manolo> | 2017-08-30 08:59:50 +0000 |
|---|---|---|
| committer | Manolo Gouy <Manolo> | 2017-08-30 08:59:50 +0000 |
| commit | 9fc2d431020dc443e19e7f3c69315e772b220898 (patch) | |
| tree | 9b10f9073f1dae3fb6a25cf080b7066784357dcc /FL/Fl_Image.H | |
| parent | fa5851b29215384d870ebc5670edb2c432fc50e5 (diff) | |
Improve Doxygen comments related to image drawing
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12407 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Image.H')
| -rw-r--r-- | FL/Fl_Image.H | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/FL/Fl_Image.H b/FL/Fl_Image.H index 83e76cbd0..3f0ab6fa7 100644 --- a/FL/Fl_Image.H +++ b/FL/Fl_Image.H @@ -164,7 +164,7 @@ public: virtual void label(Fl_Widget*w); virtual void label(Fl_Menu_Item*m); /** - Draws the image with a bounding box. + Draws the image to the current drawing surface with a bounding box. Arguments <tt>X,Y,W,H</tt> specify a bounding box for the image, with the origin (upper-left corner) of the image offset by the \c cx @@ -176,8 +176,8 @@ public: */ virtual void draw(int X, int Y, int W, int H, int cx=0, int cy=0); // platform dependent /** - Draws the image. - This form specifies the upper-lefthand corner of the image. + Draws the image to the current drawing surface. + \param X, Y specify the upper-lefthand corner of the image. */ void draw(int X, int Y) {draw(X, Y, w(), h(), 0, 0);} // platform dependent virtual void uncache(); |
