summaryrefslogtreecommitdiff
path: root/FL/Fl_SVG_Image.H
diff options
context:
space:
mode:
authormaxim nikonov <maxim.nikonov@hqo.co>2026-02-05 16:24:45 +0500
committermaxim nikonov <maxim.nikonov@hqo.co>2026-02-05 16:24:45 +0500
commitcdf2832347b8fdf0389cd373c2ead0ac5d071037 (patch)
tree96f9771aed0710899aa6cbba2a84dadfe76e996e /FL/Fl_SVG_Image.H
parentdb214d1145e46d527a46d1fc2519548d2c4d23f1 (diff)
wip
Diffstat (limited to 'FL/Fl_SVG_Image.H')
-rw-r--r--FL/Fl_SVG_Image.H12
1 files changed, 6 insertions, 6 deletions
diff --git a/FL/Fl_SVG_Image.H b/FL/Fl_SVG_Image.H
index d49d1db59..0a47b0ca6 100644
--- a/FL/Fl_SVG_Image.H
+++ b/FL/Fl_SVG_Image.H
@@ -149,7 +149,7 @@ private:
float average_weight_;
float svg_scaling_(int W, int H);
void rasterize_(int W, int H);
- void cache_size_(int &width, int &height) override;
+ void cache_size_(int &width, int &height);
void init_(const char *name, const unsigned char *filedata, size_t length);
Fl_SVG_Image(const Fl_SVG_Image *source);
public:
@@ -165,13 +165,13 @@ public:
return Fl_Image::copy();
}
void resize(int width, int height);
- void desaturate() override;
- void color_average(Fl_Color c, float i) override;
- void draw(int X, int Y, int W, int H, int cx = 0, int cy = 0) override;
+ void desaturate();
+ void color_average(Fl_Color c, float i);
+ void draw(int X, int Y, int W, int H, int cx = 0, int cy = 0);
void draw(int X, int Y) { draw(X, Y, w(), h(), 0, 0); }
- Fl_SVG_Image *as_svg_image() override { return this; }
+ Fl_SVG_Image *as_svg_image() { return this; }
const Fl_SVG_Image *as_svg_image() const override { return this; }
- void normalize() override;
+ void normalize();
};
#endif // FL_SVG_IMAGE_H