diff options
author | nyamatongwe <unknown> | 2001-04-10 07:28:46 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-04-10 07:28:46 +0000 |
commit | 1139325f92af46c808e433e1309d0d5efb148ef5 (patch) | |
tree | 156fbb94aaef3e5ed022f9c311e4599e34d9112f /src/Style.h | |
parent | b8be1dcc36674f662c18f042203b625bfda39894 (diff) | |
download | scintilla-mirror-1139325f92af46c808e433e1309d0d5efb148ef5.tar.gz |
Calltip size fixing and listbox border tweaking.
Diffstat (limited to 'src/Style.h')
-rw-r--r-- | src/Style.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/Style.h b/src/Style.h index cc66df7aa..251030990 100644 --- a/src/Style.h +++ b/src/Style.h @@ -25,6 +25,7 @@ public: bool visible; Font font; + int sizeZoomed; unsigned int lineHeight; unsigned int ascent; unsigned int descent; @@ -37,11 +38,11 @@ public: ~Style(); Style &operator=(const Style &source); void Clear(Colour fore_, Colour back_, - int size_, - const char *fontName_, int characterSet_, - bool bold_, bool italic_, bool eolFilled_, bool underline_, bool visible_); + int size_, + const char *fontName_, int characterSet_, + bool bold_, bool italic_, bool eolFilled_, bool underline_, bool visible_); bool EquivalentFontTo(const Style *other) const; - void Realise(Surface &surface, int zoomLevel, Style *defaultStyle=0); + void Realise(Surface &surface, int zoomLevel, Style *defaultStyle = 0); }; #endif |