1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 07:27:45 +00:00

LibGfx: Remove static load_from_file() from abstract Font class

This commit is contained in:
Stephan Unverwerth 2021-01-03 17:36:04 +01:00 committed by Andreas Kling
parent 79dfe9846d
commit b8c25bc7ff
6 changed files with 4 additions and 47 deletions

View file

@ -103,8 +103,6 @@ private:
class Font : public RefCounted<Font> {
public:
static RefPtr<Font> load_from_file(const StringView& path);
virtual NonnullRefPtr<Font> clone() const = 0;
virtual ~Font() {};