diff options
author | nyamatongwe <unknown> | 2000-04-18 13:23:58 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2000-04-18 13:23:58 +0000 |
commit | 3a1d36a7e56c077a1cf97e45021081a94cb5ec7b (patch) | |
tree | 3d5de7ce317ba23bed64ef26edd0121179e307e4 /include/PropSet.h | |
parent | 67fcad1cbbb833bce955e0f3cb09f844ff2e5abb (diff) | |
download | scintilla-mirror-3a1d36a7e56c077a1cf97e45021081a94cb5ec7b.tar.gz |
Removed use of PropSet in Accessor to avoid linkage.
Added indenting and horizontal scroll bar messages.
Diffstat (limited to 'include/PropSet.h')
-rw-r--r-- | include/PropSet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/PropSet.h b/include/PropSet.h index 31da01f95..27fd821a4 100644 --- a/include/PropSet.h +++ b/include/PropSet.h @@ -168,7 +168,7 @@ public: WordList(bool onlyLineEnds_ = false) : words(0), list(0), len(0), onlyLineEnds(onlyLineEnds_) {} ~WordList() { Clear(); } - operator bool() { return list; } + operator bool() { return list ? true : false; } const char *operator[](int ind) { return words[ind]; } void Clear(); void Set(const char *s); |