mirror of
https://github.com/fltk/fltk.git
synced 2026-06-01 23:06:54 +08:00
Make Fl_ICO_Image::idcount() const
... and fix docs and alignment
This commit is contained in:
+5
-3
@@ -41,9 +41,11 @@ public:
|
|||||||
|
|
||||||
Fl_ICO_Image(const char *filename, int id = -1, const unsigned char *data = NULL, const size_t datasize = 0);
|
Fl_ICO_Image(const char *filename, int id = -1, const unsigned char *data = NULL, const size_t datasize = 0);
|
||||||
~Fl_ICO_Image();
|
~Fl_ICO_Image();
|
||||||
/** Gives the number of icons of various resolutions present in the ICO object */
|
|
||||||
int idcount() { return idcount_; }
|
/** Returns the number of icons of various resolutions present in the ICO object. */
|
||||||
/** Returns the array of idcount() loaded IconDirEntry structures */
|
int idcount() const { return idcount_; }
|
||||||
|
|
||||||
|
/** Returns the array of idcount() loaded IconDirEntry structures. */
|
||||||
IconDirEntry * const icondirentry() const { return icondirentry_; }
|
IconDirEntry * const icondirentry() const { return icondirentry_; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|||||||
Reference in New Issue
Block a user