summaryrefslogtreecommitdiff
path: root/src/order_gui.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-05-06 22:08:18 +0000
committerrubidium <rubidium@openttd.org>2008-05-06 22:08:18 +0000
commit9db77e3808139fe3364345aa7bf09a5e41198e4c (patch)
tree6760a7b433eda594e11470ba7695e8c399fadbfd /src/order_gui.cpp
parent8796331d83e09dda2ac4642f9215845cc2dd321c (diff)
downloadopenttd-9db77e3808139fe3364345aa7bf09a5e41198e4c.tar.xz
(svn r12976) -Codechange: use w->SetDirty() instead of SetWindowDirty(w) when it's certain that w != NULL.
Diffstat (limited to 'src/order_gui.cpp')
-rw-r--r--src/order_gui.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/order_gui.cpp b/src/order_gui.cpp
index e85c14229..0df7079c0 100644
--- a/src/order_gui.cpp
+++ b/src/order_gui.cpp
@@ -799,7 +799,7 @@ static void OrdersWndProc(Window *w, WindowEvent *e)
/* This was a click on an empty part of the orders window, so
* deselect the currently selected order. */
WP(w, order_d).sel = -1;
- SetWindowDirty(w);
+ w->SetDirty();
return;
}
@@ -831,7 +831,7 @@ static void OrdersWndProc(Window *w, WindowEvent *e)
}
}
- SetWindowDirty(w);
+ w->SetDirty();
} break;
case ORDER_WIDGET_SKIP: