diff options
author | nyamatongwe <unknown> | 2004-03-29 12:43:42 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2004-03-29 12:43:42 +0000 |
commit | b989664ead75d08c09c44b0437f3637624482648 (patch) | |
tree | 8933c762f7672c3cad39df08ec4da39ff8add3c4 /src/Style.h | |
parent | 0f755cbbab64741e1e8ef4e8d66d29d652b96a4c (diff) | |
download | scintilla-mirror-b989664ead75d08c09c44b0437f3637624482648.tar.gz |
Patch from Robin Dunn to pass an extra flag down to
font rendering to allow a platform-specific tweak.
Diffstat (limited to 'src/Style.h')
-rw-r--r-- | src/Style.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Style.h b/src/Style.h index 6ee930b6b..c0f7eca26 100644 --- a/src/Style.h +++ b/src/Style.h @@ -44,12 +44,12 @@ public: void Clear(ColourDesired fore_, ColourDesired back_, int size_, const char *fontName_, int characterSet_, - bool bold_, bool italic_, bool eolFilled_, - bool underline_, ecaseForced caseForce_, + bool bold_, bool italic_, bool eolFilled_, + bool underline_, ecaseForced caseForce_, bool visible_, bool changeable_, bool hotspot_); void ClearTo(const Style &source); bool EquivalentFontTo(const Style *other) const; - void Realise(Surface &surface, int zoomLevel, Style *defaultStyle = 0); + void Realise(Surface &surface, int zoomLevel, Style *defaultStyle = 0, bool extraFontFlag = false); bool IsProtected() const { return !(changeable && visible);}; }; |