| 139 | } |
| 140 | |
| 141 | void Application::PrivateData::repaintIfNeeeded() |
| 142 | { |
| 143 | if (needsRepaint) |
| 144 | { |
| 145 | needsRepaint = false; |
| 146 | |
| 147 | for (WindowListIterator it = windows.begin(), ite = windows.end(); it != ite; ++it) |
| 148 | { |
| 149 | DGL_NAMESPACE::Window* const window(*it); |
| 150 | window->repaint(); |
| 151 | } |
| 152 | } |
| 153 | } |
| 154 | |
| 155 | void Application::PrivateData::quit() |
| 156 | { |
no test coverage detected