wxWakeUpIdle seems unnecessary here

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39459 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2006-05-29 20:54:57 +00:00
parent ee77681f4e
commit aeeaf3eaf0
2 changed files with 0 additions and 4 deletions

View File

@ -543,13 +543,11 @@ void Window::Show(bool show) {
void Window::InvalidateAll() {
GETWIN(id)->Refresh(false);
wxWakeUpIdle();
}
void Window::InvalidateRectangle(PRectangle rc) {
wxRect r = wxRectFromPRectangle(rc);
GETWIN(id)->Refresh(false, &r);
wxWakeUpIdle();
}
void Window::SetFont(Font &font) {

View File

@ -543,13 +543,11 @@ void Window::Show(bool show) {
void Window::InvalidateAll() {
GETWIN(id)->Refresh(false);
wxWakeUpIdle();
}
void Window::InvalidateRectangle(PRectangle rc) {
wxRect r = wxRectFromPRectangle(rc);
GETWIN(id)->Refresh(false, &r);
wxWakeUpIdle();
}
void Window::SetFont(Font &font) {