diff options
author | nyamatongwe <devnull@localhost> | 2005-08-06 06:16:59 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2005-08-06 06:16:59 +0000 |
commit | 1d3c9f64d9f7ff35576988f04f8597012e7b88d7 (patch) | |
tree | d6a36bfacebc736498fb67d6da5fae85922850c2 /include/PropSet.h | |
parent | c16f9b5c17f97a19499619191613c2fedbd66215 (diff) | |
download | scintilla-mirror-1d3c9f64d9f7ff35576988f04f8597012e7b88d7.tar.gz |
Allow properties to differentiate between different case file names on
GTK+ so that .C can be treated as c++ and .c as C.
Diffstat (limited to 'include/PropSet.h')
-rw-r--r-- | include/PropSet.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/PropSet.h b/include/PropSet.h index ef1faffba..e38de7dc4 100644 --- a/include/PropSet.h +++ b/include/PropSet.h @@ -29,6 +29,7 @@ protected: Property *props[hashRoots]; Property *enumnext; int enumhash; + static bool caseSensitiveFilenames; static unsigned int HashString(const char *s, size_t len) { unsigned int ret = 0; while (len--) { @@ -58,6 +59,9 @@ public: char *ToString(); // Caller must delete[] the return value bool GetFirst(char **key, char **val); bool GetNext(char **key, char **val); + static void SetCaseSensitiveFilenames(bool caseSensitiveFilenames_) { + caseSensitiveFilenames = caseSensitiveFilenames_; + } private: // copy-value semantics not implemented |