diff options
author | nyamatongwe <devnull@localhost> | 2001-04-10 07:28:46 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2001-04-10 07:28:46 +0000 |
commit | 7d93f9820fdf159cd28b9dd988793e0097649d83 (patch) | |
tree | 156fbb94aaef3e5ed022f9c311e4599e34d9112f /src/Style.h | |
parent | c7f09e03f1d8598a6b039c9b86439872f105c1a2 (diff) | |
download | scintilla-mirror-7d93f9820fdf159cd28b9dd988793e0097649d83.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 |