diff options
| author | nyamatongwe <unknown> | 2011-07-11 11:17:48 +1000 | 
|---|---|---|
| committer | nyamatongwe <unknown> | 2011-07-11 11:17:48 +1000 | 
| commit | 0cf1225ab37cfb1426f47018c0c1e9e615ee1eef (patch) | |
| tree | 59e341c45ce2e1fe6ef113dab72004b30895ddfc /src/Document.h | |
| parent | ebe47b5ef1aeb3d971b2166b9c3eae2f6fd25447 (diff) | |
| download | scintilla-mirror-0cf1225ab37cfb1426f47018c0c1e9e615ee1eef.tar.gz | |
Avoid shadowing of fields even for static methods to stop warnings.
Diffstat (limited to 'src/Document.h')
| -rw-r--r-- | src/Document.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/Document.h b/src/Document.h index e8dfbabc8..00d23a45d 100644 --- a/src/Document.h +++ b/src/Document.h @@ -303,7 +303,7 @@ public:  	int GetColumn(int position);  	int FindColumn(int line, int column);  	void Indent(bool forwards, int lineBottom, int lineTop); -	static char *TransformLineEnds(int *pLenOut, const char *s, size_t len, int eolMode); +	static char *TransformLineEnds(int *pLenOut, const char *s, size_t len, int eolModeWanted);  	void ConvertLineEnds(int eolModeSet);  	void SetReadOnly(bool set) { cb.SetReadOnly(set); }  	bool IsReadOnly() { return cb.IsReadOnly(); } | 
