aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ViewStyle.h
diff options
context:
space:
mode:
authornyamatongwe <nyamatongwe@gmail.com>2013-09-10 15:35:32 +1000
committernyamatongwe <nyamatongwe@gmail.com>2013-09-10 15:35:32 +1000
commitbbfea9ca4e14961ecad7bd62acc868c0f4a2adaa (patch)
tree4286e0bcc319d86a3d355ee79688503ef1bb4db6 /src/ViewStyle.h
parent8ba6c4c8e180b7506d1cb4f012aac253b3da6750 (diff)
downloadscintilla-mirror-bbfea9ca4e14961ecad7bd62acc868c0f4a2adaa.tar.gz
Fix variable shadowing issues.
Diffstat (limited to 'src/ViewStyle.h')
-rw-r--r--src/ViewStyle.h2
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 &);
};