| 48 | } |
| 49 | |
| 50 | void ScratchPad::checkButtonClicked() |
| 51 | { |
| 52 | QString filename = mUI->lineEdit->text(); |
| 53 | if (filename.isEmpty()) |
| 54 | filename = "test.cpp"; |
| 55 | mMainWindow.analyzeCode(mUI->plainTextEdit->toPlainText(), filename); |
| 56 | } |
nothing calls this directly
no test coverage detected