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/signs_gui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/signs_gui.cpp') diff --git a/src/signs_gui.cpp b/src/signs_gui.cpp index 3c282b6a5..63fb571b1 100644 --- a/src/signs_gui.cpp +++ b/src/signs_gui.cpp @@ -75,7 +75,7 @@ static void SignListWndProc(Window *w, WindowEvent *e) SetVScrollCount(w, _num_sign_sort); SetDParam(0, w->vscroll.count); - DrawWindowWidgets(w); + w->DrawWidgets(); /* No signs? */ int y = 16; // offset from top of widget @@ -197,7 +197,7 @@ struct SignWindow : QueryStringBaseWindow { virtual void OnPaint() { SetDParam(0, this->caption); - DrawWindowWidgets(this); + this->DrawWidgets(); this->DrawEditBox(QUERY_EDIT_SIGN_WIDGET_TEXT); } -- cgit v1.2.3-54-g00ecf