aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Platform.h
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2015-03-29 10:42:33 +1100
committerNeil <nyamatongwe@gmail.com>2015-03-29 10:42:33 +1100
commit9e589badba71d6e6e8dee8d12e8f38ddc7aab39e (patch)
tree84ff9e9f93c9f998ea642cb8f4c4a31b14bc25e2 /include/Platform.h
parenta5ccae5f9dbcd42f075d5e12509f2e58bd090c51 (diff)
downloadscintilla-mirror-9e589badba71d6e6e8dee8d12e8f38ddc7aab39e.tar.gz
Bug [#1682] Removed the ascent member of Font and all wxWidgets-specific code.
Diffstat (limited to 'include/Platform.h')
-rw-r--r--include/Platform.h6
1 files changed, 0 insertions, 6 deletions
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;
};