diff options
| author | Neil <nyamatongwe@gmail.com> | 2020-03-27 09:16:06 +1100 | 
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2020-03-27 09:16:06 +1100 | 
| commit | 65c3b110e48a73b4bc6fe2cb1f37d2415c0aa3d2 (patch) | |
| tree | d5d952a94347de3a06692f0c955161256b0e4beb /lexlib/PropSetSimple.h | |
| parent | 5f4a3252dfb66b77f6ed4acf0e4bc46a5c678744 (diff) | |
| download | scintilla-mirror-65c3b110e48a73b4bc6fe2cb1f37d2415c0aa3d2.tar.gz | |
Backport: Avoid casts by returning size_t from GetExpanded.
Backport of changeset 8099:2228fb724ce7.
Diffstat (limited to 'lexlib/PropSetSimple.h')
| -rw-r--r-- | lexlib/PropSetSimple.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/lexlib/PropSetSimple.h b/lexlib/PropSetSimple.h index ba4e42446..d4a5b2243 100644 --- a/lexlib/PropSetSimple.h +++ b/lexlib/PropSetSimple.h @@ -19,7 +19,7 @@ public:  	void Set(const char *key, const char *val, size_t lenKey, size_t lenVal);  	void SetMultiple(const char *);  	const char *Get(const char *key) const; -	int GetExpanded(const char *key, char *result) const; +	size_t GetExpanded(const char *key, char *result) const;  	int GetInt(const char *key, int defaultValue=0) const;  }; | 
