aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
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 /src
parenta5ccae5f9dbcd42f075d5e12509f2e58bd090c51 (diff)
downloadscintilla-mirror-9e589badba71d6e6e8dee8d12e8f38ddc7aab39e.tar.gz
Bug [#1682] Removed the ascent member of Font and all wxWidgets-specific code.
Diffstat (limited to 'src')
-rw-r--r--src/Style.cxx3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/Style.cxx b/src/Style.cxx
index 10fc0d2bf..ba3f97c3d 100644
--- a/src/Style.cxx
+++ b/src/Style.cxx
@@ -163,8 +163,5 @@ void Style::ClearTo(const Style &source) {
void Style::Copy(Font &font_, const FontMeasurements &fm_) {
font.MakeAlias(font_);
-#if PLAT_WX
- font.SetAscent(fm_.ascent);
-#endif
(FontMeasurements &)(*this) = fm_;
}