From 77b174e27eb28ffce6794588d0de1433bffe7672 Mon Sep 17 00:00:00 2001 From: Neil Date: Sun, 22 Jun 2014 12:50:03 +1000 Subject: Drawing and measuring should not change ViewStyle which is set by the container so mark ViewStyle parameters as const. Provide a FontAlias copy constructor and use it to work around non-const Font arguments to Surface when sourced from const ViewStyle. --- src/Indicator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Indicator.h') diff --git a/src/Indicator.h b/src/Indicator.h index 0284a855b..beda8214b 100644 --- a/src/Indicator.h +++ b/src/Indicator.h @@ -23,7 +23,7 @@ public: int outlineAlpha; Indicator() : style(INDIC_PLAIN), under(false), fore(ColourDesired(0,0,0)), fillAlpha(30), outlineAlpha(50) { } - void Draw(Surface *surface, const PRectangle &rc, const PRectangle &rcLine); + void Draw(Surface *surface, const PRectangle &rc, const PRectangle &rcLine) const; }; #ifdef SCI_NAMESPACE -- cgit v1.2.3