From 121977f613e8d275fd9bdda071d6dc024e16ff78 Mon Sep 17 00:00:00 2001 From: Neil Date: Sun, 29 Mar 2015 10:42:33 +1100 Subject: Bug [#1682] Removed the ascent member of Font and all wxWidgets-specific code. --- include/Platform.h | 6 ------ 1 file changed, 6 deletions(-) (limited to 'include') diff --git a/include/Platform.h b/include/Platform.h index c4a1a0b40..4ef7e2aab 100644 --- a/include/Platform.h +++ b/include/Platform.h @@ -271,9 +271,6 @@ struct FontParameters { class Font { protected: FontID fid; -#if PLAT_WX - int ascent; -#endif // Private so Font objects can not be copied Font(const Font &); Font &operator=(const Font &); @@ -287,9 +284,6 @@ public: FontID GetID() { return fid; } // Alias another font - caller guarantees not to Release void SetID(FontID fid_) { fid = fid_; } -#if PLAT_WX - void SetAscent(int ascent_) { ascent = ascent_; } -#endif friend class Surface; friend class SurfaceImpl; }; -- cgit v1.2.3