From 8b5421290027ab67cba25225111e3561ddd7af07 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sat, 17 May 2008 12:48:06 +0000 Subject: (svn r13139) -Codechange: move DrawWindowWidgets and DrawWindowViewport to the Window class and remove Window from their naming. --- src/cheat_gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/cheat_gui.cpp') diff --git a/src/cheat_gui.cpp b/src/cheat_gui.cpp index 0ee653185..1bb1c5eba 100644 --- a/src/cheat_gui.cpp +++ b/src/cheat_gui.cpp @@ -129,7 +129,7 @@ struct CheatWindow : Window { virtual void OnPaint() { - DrawWindowWidgets(this); + this->DrawWidgets(); DrawStringMultiCenter(200, 25, STR_CHEATS_WARNING, width - 50); for (int i = 0, x = 0, y = 45; i != lengthof(_cheats_ui); i++) { -- cgit v1.2.3-54-g00ecf