Improve doc of the Fl_SVG_Image public constructor.

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12420 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Manolo Gouy 2017-09-04 08:38:06 +00:00
parent dd9f32c3f5
commit 276b8255e2
1 changed files with 2 additions and 2 deletions

View File

@ -33,9 +33,9 @@
/** The constructor loads the SVG image from the given .svg filename or in-memory data.
\param filename A full path and name pointing to an SVG file.
\param filename A full path and name pointing to an SVG file, or NULL.
\param filedata A pointer to the memory location of the SVG image data.
This parameter allows to load an SVG image from in-memory data, and requires that \p filename is NULL.
This parameter allows to load an SVG image from in-memory data, and is used when \p filename is NULL.
\note In-memory SVG data is modified by the object constructor and is no longer used after construction.
*/
Fl_SVG_Image::Fl_SVG_Image(const char *filename, char *filedata) : Fl_RGB_Image(NULL, 0, 0, 4) {