From 735cae628a08a6cc1a43585976be3ec2de1d697b Mon Sep 17 00:00:00 2001 From: Andrzej Rybczak Date: Thu, 19 Feb 2009 00:20:48 +0100 Subject: [PATCH] call Window::Refresh() in Window::Clear() explicitly call to Window::Clear() from Menu object was calling Menu::Refresh() instead of Window::Refresh(), so make an explicit call to this method. --- src/window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/window.cpp b/src/window.cpp index 699415f0..105cb54d 100644 --- a/src/window.cpp +++ b/src/window.cpp @@ -279,7 +279,7 @@ void Window::Refresh() void Window::Clear(bool) { werase(itsWindow); - Refresh(); + Window::Refresh(); } void Window::Hide(char x) const