diff options
author | nyamatongwe <unknown> | 2011-06-07 11:30:23 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2011-06-07 11:30:23 +1000 |
commit | cfd7180e33b49c884738f4975584f0d010a28b99 (patch) | |
tree | 50f88b12e28928c8d9f2daeb5a30ae5183e92dd7 /src/RunStyles.h | |
parent | bd88866db20ffb28513e713957ba8c27e47a8a08 (diff) | |
download | scintilla-mirror-cfd7180e33b49c884738f4975584f0d010a28b99.tar.gz |
Make SCN_NEEDSHOWN notification work when word wrap is enabled.
This fixes the last remaining issue from bug #3291579.
From Marko Njezic
Diffstat (limited to 'src/RunStyles.h')
-rw-r--r-- | src/RunStyles.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/RunStyles.h b/src/RunStyles.h index 0a333ca2a..a3b7ac7d1 100644 --- a/src/RunStyles.h +++ b/src/RunStyles.h @@ -37,6 +37,8 @@ public: void InsertSpace(int position, int insertLength); void DeleteAll(); void DeleteRange(int position, int deleteLength); + bool AllSame() const; + bool AllSameAs(int value) const; }; #ifdef SCI_NAMESPACE |