| 839 | } |
| 840 | |
| 841 | void WorkspaceWidgetPrivate::handleSetDebugLine(const QString &fileName, int line) |
| 842 | { |
| 843 | auto tabWidget = currentTabWidget(); |
| 844 | if (!tabWidget) |
| 845 | return; |
| 846 | |
| 847 | tabWidget->openFile(fileName); |
| 848 | tabWidget->setDebugLine(line); |
| 849 | } |
| 850 | |
| 851 | void WorkspaceWidgetPrivate::handleRemoveDebugLine() |
| 852 | { |
nothing calls this directly
no test coverage detected