| 749 | |
| 750 | |
| 751 | void UBWebController::cut() |
| 752 | { |
| 753 | if (mCurrentWebBrowser && mCurrentWebBrowser->currentTab()) |
| 754 | { |
| 755 | WebView* webView = mCurrentWebBrowser->currentTab(); |
| 756 | QAction *act = webView->pageAction(QWebEnginePage::Cut); |
| 757 | if(act) |
| 758 | act->trigger(); |
| 759 | } |
| 760 | } |
| 761 | |
| 762 | void UBWebController::aboutToShowBackMenu() |
| 763 | { |