| 433 | } |
| 434 | |
| 435 | void Window::evaluateJS(const char* const js) |
| 436 | { |
| 437 | DISTRHO_SAFE_ASSERT_RETURN(pData->webViewHandle != nullptr,); |
| 438 | |
| 439 | webViewEvaluateJS(pData->webViewHandle, js); |
| 440 | } |
| 441 | #endif |
| 442 | |
| 443 | void Window::repaint() noexcept |
nothing calls this directly
no test coverage detected