From b00f62123960a9beaf85da92df2537b24d5c0295 Mon Sep 17 00:00:00 2001 From: glx Date: Fri, 7 Dec 2007 18:05:49 +0000 Subject: (svn r11588) -Codechange: use the new member introduced in r11551 --- src/depot_gui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/depot_gui.cpp') diff --git a/src/depot_gui.cpp b/src/depot_gui.cpp index e61765762..17d8b06d1 100644 --- a/src/depot_gui.cpp +++ b/src/depot_gui.cpp @@ -794,7 +794,7 @@ static void DepotWndProc(Window *w, WindowEvent *e) break; case DEPOT_WIDGET_CLONE: // Clone button - InvalidateWidget(w, DEPOT_WIDGET_CLONE); + w->InvalidateWidget(DEPOT_WIDGET_CLONE); w->ToggleWidgetLoweredState(DEPOT_WIDGET_CLONE); if (w->IsWidgetLowered(DEPOT_WIDGET_CLONE)) { @@ -856,7 +856,7 @@ static void DepotWndProc(Window *w, WindowEvent *e) case WE_ABORT_PLACE_OBJ: { w->RaiseWidget(DEPOT_WIDGET_CLONE); - InvalidateWidget(w, DEPOT_WIDGET_CLONE); + w->InvalidateWidget(DEPOT_WIDGET_CLONE); } break; /* check if a vehicle in a depot was clicked.. */ -- cgit v1.2.3-54-g00ecf