diff options
author | nyamatongwe <devnull@localhost> | 2004-03-29 12:43:42 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2004-03-29 12:43:42 +0000 |
commit | e87e20b3526a9eda623263ef09de27be2ff40d4d (patch) | |
tree | 35991b07d8b26884128c80543cfc731fcf07e7e1 /win32/PlatWin.cxx | |
parent | 9c68461190bd8a25e841b2fc715da96d3143096a (diff) | |
download | scintilla-mirror-e87e20b3526a9eda623263ef09de27be2ff40d4d.tar.gz |
Patch from Robin Dunn to pass an extra flag down to
font rendering to allow a platform-specific tweak.
Diffstat (limited to 'win32/PlatWin.cxx')
-rw-r--r-- | win32/PlatWin.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx index fc8b01e7f..c8a97fb40 100644 --- a/win32/PlatWin.cxx +++ b/win32/PlatWin.cxx @@ -250,7 +250,8 @@ Font::~Font() { #define FONTS_CACHED -void Font::Create(const char *faceName, int characterSet, int size, bool bold, bool italic) { +void Font::Create(const char *faceName, int characterSet, int size, + bool bold, bool italic, bool) { Release(); #ifndef FONTS_CACHED LOGFONT lf; |