diff options
author | nyamatongwe <unknown> | 2001-11-30 23:06:05 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-11-30 23:06:05 +0000 |
commit | b4a70d8b28a3ef35bc0c38cbc3db5f10dedb0003 (patch) | |
tree | 357adca6dd6252ee38de3ce526ac3af0062ff208 | |
parent | 0a1a18e44970cd2695e7f26925ec1d641e554661 (diff) | |
download | scintilla-mirror-b4a70d8b28a3ef35bc0c38cbc3db5f10dedb0003.tar.gz |
Gave GetNewExpand a default filename to make it easier to do expansion.
-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 6f6bf410f..45ee8d3bd 100644 --- a/include/PropSet.h +++ b/include/PropSet.h @@ -41,7 +41,7 @@ public: SString Expand(const char *withVars); int GetInt(const char *key, int defaultValue=0); SString GetWild(const char *keybase, const char *filename); - SString GetNewExpand(const char *keybase, const char *filename); + SString GetNewExpand(const char *keybase, const char *filename=""); void Clear(); char *ToString(); // Caller must delete[] the return value bool GetFirst(char **key, char **val); |