| 1150 | } |
| 1151 | |
| 1152 | void WorkspaceWidget::showTips(const QString &tips) |
| 1153 | { |
| 1154 | if (auto tabWidget = d->currentTabWidget()) |
| 1155 | QMetaObject::invokeMethod(tabWidget, "showTips", |
| 1156 | Qt::QueuedConnection, |
| 1157 | Q_ARG(const QString &, tips)); |
| 1158 | } |
| 1159 | |
| 1160 | void WorkspaceWidget::insertText(const QString &text) |
| 1161 | { |
nothing calls this directly
no test coverage detected