| 25 | } |
| 26 | |
| 27 | WMWindow* WMInstance::FindWindow(int id){ |
| 28 | for(WMWindow* win : windows){ |
| 29 | if(win->clientID == id){ |
| 30 | return win; |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | return nullptr; |
| 35 | } |
| 36 | |
| 37 | void WMInstance::MinimizeWindow(WMWindow* win, bool state){ |
| 38 | redrawBackground = true; |
nothing calls this directly
no outgoing calls
no test coverage detected