diff options
author | nyamatongwe <unknown> | 2010-07-13 21:31:10 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2010-07-13 21:31:10 +1000 |
commit | 4a42ef938d5cc3b13f42b4a3f4e7310a6b5cbf4b (patch) | |
tree | 640b660b0e2dc77efb9531e2ab21218f589b4362 /lexlib/PropSetSimple.h | |
parent | e57e6904030c8df384b5f4b33b892ffa5dad4fe6 (diff) | |
download | scintilla-mirror-4a42ef938d5cc3b13f42b4a3f4e7310a6b5cbf4b.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; }; |