| 213 | } |
| 214 | |
| 215 | void Window::positionWindow(int x, int y) |
| 216 | { |
| 217 | if (m_isAutoRemap) |
| 218 | remapWindow(); |
| 219 | |
| 220 | setBounds(Rect(x, y, bounds().w, bounds().h)); |
| 221 | |
| 222 | invalidate(); |
| 223 | } |
| 224 | |
| 225 | void Window::moveWindow(const gfx::Rect& rect) |
| 226 | { |
no outgoing calls
no test coverage detected