| 231 | } |
| 232 | |
| 233 | void BrowserWindow::zoomIn() |
| 234 | { |
| 235 | WebView* webView = m_tabWidget->currentWebView(); |
| 236 | |
| 237 | if (!webView) |
| 238 | return; |
| 239 | |
| 240 | webView->setZoomFactor(webView->zoomFactor() + 0.1); |
| 241 | } |
| 242 | |
| 243 | void BrowserWindow::zoomOut() |
| 244 | { |
nothing calls this directly
no test coverage detected