aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Style.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2000-08-16 12:55:58 +0000
committernyamatongwe <devnull@localhost>2000-08-16 12:55:58 +0000
commit46a5a58aed719e6a924978e777ac7f4fc52135e7 (patch)
treecd622b4abbd40ec758d4aa320dda9b2cec20c799 /src/Style.h
parent6a3a6fb8c005995a26302cfbaa8a87896cb3b3f1 (diff)
downloadscintilla-mirror-46a5a58aed719e6a924978e777ac7f4fc52135e7.tar.gz
Invisible text.
Fixes to ensure long lines do not overflow buffers.
Diffstat (limited to 'src/Style.h')
-rw-r--r--src/Style.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Style.h b/src/Style.h
index dc643d08d..9a2b4586a 100644
--- a/src/Style.h
+++ b/src/Style.h
@@ -18,6 +18,7 @@ public:
int characterSet;
bool eolFilled;
bool underline;
+ bool visible;
Font font;
unsigned int lineHeight;
@@ -34,7 +35,7 @@ public:
void Clear(Colour fore_, Colour back_,
int size_,
const char *fontName_, int characterSet_,
- bool bold_, bool italic_, bool eolFilled_, bool underline_);
+ 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);
};