(svn r12976) -Codechange: use w->SetDirty() instead of SetWindowDirty(w) when it's certain that w != NULL.

This commit is contained in:
rubidium
2008-05-06 22:08:18 +00:00
parent 8796331d83
commit 9db77e3808
34 changed files with 241 additions and 246 deletions

View File

@@ -207,12 +207,12 @@ static void CheatsWndProc(Window *w, WindowEvent *e)
w->flags4 |= 5 << WF_TIMEOUT_SHL;
SetWindowDirty(w);
w->SetDirty();
} break;
case WE_TIMEOUT:
WP(w, def_d).data_1 = 0;
SetWindowDirty(w);
w->SetDirty();
break;
}
}