| 1710 | } |
| 1711 | |
| 1712 | void Host::OpenURL(const std::string_view url) |
| 1713 | { |
| 1714 | QtHost::RunOnUIThread([url = QtUtils::StringViewToQString(url)]() { QtUtils::OpenURL(g_main_window, QUrl(url)); }); |
| 1715 | } |
| 1716 | |
| 1717 | bool Host::CopyTextToClipboard(const std::string_view text) |
| 1718 | { |
nothing calls this directly
no test coverage detected