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.
This commit is contained in:
Andrzej Rybczak
2009-02-19 00:20:48 +01:00
parent 3b32d84a76
commit 735cae628a

View File

@@ -279,7 +279,7 @@ void Window::Refresh()
void Window::Clear(bool) void Window::Clear(bool)
{ {
werase(itsWindow); werase(itsWindow);
Refresh(); Window::Refresh();
} }
void Window::Hide(char x) const void Window::Hide(char x) const