| 1158 | } |
| 1159 | |
| 1160 | void WorkspaceWidget::insertText(const QString &text) |
| 1161 | { |
| 1162 | if (auto tabWidget = d->currentTabWidget()) |
| 1163 | QMetaObject::invokeMethod(tabWidget, "insertText", |
| 1164 | Qt::QueuedConnection, |
| 1165 | Q_ARG(const QString &, text)); |
| 1166 | } |
| 1167 | |
| 1168 | void WorkspaceWidget::undo() |
| 1169 | { |
nothing calls this directly
no test coverage detected