From bf959f926ff6dee99a15d91652256169a6484042 Mon Sep 17 00:00:00 2001 From: skidd13 Date: Sat, 24 Nov 2007 10:38:43 +0000 Subject: (svn r11510) -Codechange: merge the IS_*INSIDE* functions and rename them fitting to the naming style --- 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 f7e267056..ee97a5f7a 100644 --- a/src/graph_gui.cpp +++ b/src/graph_gui.cpp @@ -279,7 +279,7 @@ static void GraphLegendWndProc(Window *w, WindowEvent *e) } case WE_CLICK: - if (!IS_INT_INSIDE(e->we.click.widget, 3, 11)) return; + if (!IsInsideMM(e->we.click.widget, 3, 11)) return; ToggleBit(_legend_excluded_players, e->we.click.widget - 3); ToggleWidgetLoweredState(w, e->we.click.widget); @@ -1050,7 +1050,7 @@ static void PerformanceRatingDetailWndProc(Window *w, WindowEvent *e) case WE_CLICK: /* Check which button is clicked */ - if (IS_INT_INSIDE(e->we.click.widget, 13, 21)) { + if (IsInsideMM(e->we.click.widget, 13, 21)) { /* Is it no on disable? */ if (!IsWindowWidgetDisabled(w, e->we.click.widget)) { RaiseWindowWidget(w, _performance_rating_detail_player + 13); -- cgit v1.2.3-54-g00ecf