From c3746a55bbee5d1b752411480a6e1abfe0413870 Mon Sep 17 00:00:00 2001 From: rubidium Date: Tue, 23 Dec 2008 21:03:43 +0000 Subject: (svn r14732) -Codechange: replace some magic number with less magic constants and use the proper type for a few variables. --- src/graph_gui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/graph_gui.cpp') diff --git a/src/graph_gui.cpp b/src/graph_gui.cpp index 199248cd4..1f9bcf973 100644 --- a/src/graph_gui.cpp +++ b/src/graph_gui.cpp @@ -66,7 +66,7 @@ struct GraphLegendWindow : Window { virtual void OnClick(Point pt, int widget) { - if (!IsInsideMM(widget, 3, 11)) return; + if (!IsInsideMM(widget, 3, MAX_COMPANIES + 3)) return; ToggleBit(_legend_excluded_companies, widget - 3); this->ToggleWidgetLoweredState(widget); @@ -859,7 +859,7 @@ struct PerformanceRatingDetailWindow : Window { private: enum PerformanteRatingWidgets { PRW_COMPANY_FIRST = 13, - PRW_COMPANY_LAST = 20, + PRW_COMPANY_LAST = PRW_COMPANY_FIRST + MAX_COMPANIES - 1, }; public: -- cgit v1.2.3-70-g09d2