| 2391 | } |
| 2392 | |
| 2393 | void MainWindow::editor_cursor_position_changed() |
| 2394 | { |
| 2395 | if (curEditor) { |
| 2396 | statusLineColLabel->setText(QString("Line: ")+QString().number(curEditor->textCursor().blockNumber()+1)+", Col: "+QString().number(curEditor->textCursor().columnNumber()+1)); |
| 2397 | } |
| 2398 | } |
| 2399 | |
| 2400 | void MainWindow::on_actionSubmit_to_MOOC_triggered() |
| 2401 | { |
nothing calls this directly
no outgoing calls
no test coverage detected