summaryrefslogtreecommitdiff
path: root/FL/Fl_SVG_Image.H
diff options
context:
space:
mode:
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