diff options
author | Neil <nyamatongwe@gmail.com> | 2021-03-17 15:43:24 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2021-03-17 15:43:24 +1100 |
commit | f0861077dfa88fd1e2846b164701eca5de63c292 (patch) | |
tree | 73e7cca1b5b22a65cb2d1f2549982ce9c6463036 /src/Platform.h | |
parent | 1b5dd62b71d8d9b657b0cd7c138c9dc523a07cc4 (diff) | |
download | scintilla-mirror-f0861077dfa88fd1e2846b164701eca5de63c292.tar.gz |
Remove Window::SetFont as never used.
Diffstat (limited to 'src/Platform.h')
-rw-r--r-- | src/Platform.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Platform.h b/src/Platform.h index cd096af6b..5b2116fcd 100644 --- a/src/Platform.h +++ b/src/Platform.h @@ -245,7 +245,6 @@ public: void Show(bool show=true); void InvalidateAll(); void InvalidateRectangle(PRectangle rc); - virtual void SetFont(const Font *font); enum Cursor { cursorInvalid, cursorText, cursorArrow, cursorUp, cursorWait, cursorHoriz, cursorVert, cursorReverseArrow, cursorHand }; void SetCursor(Cursor curs); PRectangle GetMonitorRect(Point pt); @@ -276,7 +275,7 @@ public: ~ListBox() override; static ListBox *Allocate(); - void SetFont(const Font *font) override =0; + virtual void SetFont(const Font *font)=0; virtual void Create(Window &parent, int ctrlID, Point location, int lineHeight_, bool unicodeMode_, int technology_)=0; virtual void SetAverageCharWidth(int width)=0; virtual void SetVisibleRows(int rows)=0; |