aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Platform.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2004-03-29 12:43:42 +0000
committernyamatongwe <devnull@localhost>2004-03-29 12:43:42 +0000
commita86542284db36d95dfe424b7a181e6a85b1859c8 (patch)
tree4de0cffaab2c955698522a743196e23f1ebeede4 /include/Platform.h
parent5aee68d158881de4d1e642480d66117dff2c8212 (diff)
downloadscintilla-mirror-a86542284db36d95dfe424b7a181e6a85b1859c8.tar.gz
Patch from Robin Dunn to pass an extra flag down to
font rendering to allow a platform-specific tweak.
Diffstat (limited to 'include/Platform.h')
-rw-r--r--include/Platform.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/Platform.h b/include/Platform.h
index eae194d52..99daf98ba 100644
--- a/include/Platform.h
+++ b/include/Platform.h
@@ -279,7 +279,8 @@ public:
Font();
virtual ~Font();
- virtual void Create(const char *faceName, int characterSet, int size, bool bold, bool italic);
+ virtual void Create(const char *faceName, int characterSet, int size,
+ bool bold, bool italic, bool extraFontFlag=false);
virtual void Release();
FontID GetID() { return id; }