diff options
author | nyamatongwe <nyamatongwe@gmail.com> | 2013-09-10 15:35:32 +1000 |
---|---|---|
committer | nyamatongwe <nyamatongwe@gmail.com> | 2013-09-10 15:35:32 +1000 |
commit | 8dd25346bdaea0aa12ee83d35624d9d2c045af9a (patch) | |
tree | d0c65abb1138169d15531e10f98d7f21baac280b /src/ViewStyle.h | |
parent | a1edd2b133bf3ae4d263cea2f46aacb4b51fccb5 (diff) | |
download | scintilla-mirror-8dd25346bdaea0aa12ee83d35624d9d2c045af9a.tar.gz |
Fix variable shadowing issues.
Diffstat (limited to 'src/ViewStyle.h')
-rw-r--r-- | src/ViewStyle.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ViewStyle.h b/src/ViewStyle.h index 244f5c508..3fbe2d751 100644 --- a/src/ViewStyle.h +++ b/src/ViewStyle.h @@ -180,7 +180,7 @@ private: void AllocStyles(size_t sizeNew); void CreateFont(const FontSpecification &fs); FontRealised *Find(const FontSpecification &fs); - void FindMaxAscentDescent(unsigned int &maxAscent, unsigned int &maxDescent); + void FindMaxAscentDescent(); // Private so can only be copied through copy constructor which ensures font names initialised correctly ViewStyle &operator=(const ViewStyle &); }; |