diff options
| author | YX <yxxinyuan@zju.edu.cn> | 2022-03-26 14:29:32 +0800 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2022-03-26 17:55:13 +0100 |
| commit | e9b1c2fed092c9952464cc7999bf4a5c27ab250b (patch) | |
| tree | f61b61d76e9ed8bef9662e6641f3256e75d7616e /FL/Fl_Image.H | |
| parent | fc250a3aa232da612ac3f9f22fdf4b9784f7d9d1 (diff) | |
Add `const` to Fl_Image::fail() (PR #415)
Diffstat (limited to 'FL/Fl_Image.H')
| -rw-r--r-- | FL/Fl_Image.H | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FL/Fl_Image.H b/FL/Fl_Image.H index 690239b65..a32b29c4a 100644 --- a/FL/Fl_Image.H +++ b/FL/Fl_Image.H @@ -187,7 +187,7 @@ public: \see count(), w(), h(), data_w(), data_h(), d(), ld() */ const char * const *data() const {return data_;} - int fail(); + int fail() const; /** Releases an Fl_Image - the same as '\p delete \p this'. |
