diff options
author | nyamatongwe <unknown> | 2009-11-02 04:51:51 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2009-11-02 04:51:51 +0000 |
commit | c563199dde32ce1d04e95c478dbd6a3e352f5d4d (patch) | |
tree | 517893f316edf898a972316bbcd3b7b64c82de0f /src/Style.h | |
parent | dde4d3e2775b52a8b678d209c2299ec637210a03 (diff) | |
download | scintilla-mirror-c563199dde32ce1d04e95c478dbd6a3e352f5d4d.tar.gz |
Added setting for font quality to allow application to choose anti-aliased,
non-anti-aliased or lcd-optimized text.
Diffstat (limited to 'src/Style.h')
-rw-r--r-- | src/Style.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Style.h b/src/Style.h index 1caecaee7..0be3d4f07 100644 --- a/src/Style.h +++ b/src/Style.h @@ -53,7 +53,7 @@ public: 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, bool extraFontFlag = false); + void Realise(Surface &surface, int zoomLevel, Style *defaultStyle = 0, int extraFontFlag = 0); bool IsProtected() const { return !(changeable && visible);}; }; |