| 725 | |
| 726 | |
| 727 | void UBWebController::copy() |
| 728 | { |
| 729 | if (mCurrentWebBrowser && mCurrentWebBrowser->currentTab()) |
| 730 | { |
| 731 | WebView* webView = mCurrentWebBrowser->currentTab(); |
| 732 | QAction *act = webView->pageAction(QWebEnginePage::Copy); |
| 733 | if(act) |
| 734 | act->trigger(); |
| 735 | } |
| 736 | } |
| 737 | |
| 738 | |
| 739 | void UBWebController::paste() |
no test coverage detected