diff options
author | nyamatongwe <devnull@localhost> | 2010-07-13 21:31:10 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2010-07-13 21:31:10 +1000 |
commit | c6f21af4f42c480d20729ce0d285cee6e94ffcbb (patch) | |
tree | 728b10068a0dda0a55e156bee2113d0752718c79 /lexlib/PropSetSimple.h | |
parent | 253d170b5b6d2625b6f7edb0aa1a57907909add2 (diff) | |
download | scintilla-mirror-c6f21af4f42c480d20729ce0d285cee6e94ffcbb.tar.gz |
Changed files for new lexer design.
Diffstat (limited to 'lexlib/PropSetSimple.h')
-rw-r--r-- | lexlib/PropSetSimple.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lexlib/PropSetSimple.h b/lexlib/PropSetSimple.h index 1674cfb9e..b79873720 100644 --- a/lexlib/PropSetSimple.h +++ b/lexlib/PropSetSimple.h @@ -12,7 +12,7 @@ namespace Scintilla { #endif -class PropSetSimple : public PropertyGet { +class PropSetSimple { void *impl; void Set(const char *keyVal); public: @@ -22,7 +22,7 @@ public: void SetMultiple(const char *); const char *Get(const char *key) const; char *Expanded(const char *key) const; - char *ToString() const; + int GetExpanded(const char *key, char *result) const; int GetInt(const char *key, int defaultValue=0) const; }; |