| 440 | } |
| 441 | |
| 442 | MyCanvas* MainWindow::loadCanvas(const QString &path){ |
| 443 | QFile input(path); |
| 444 | input.open(QIODevice::ReadOnly); |
| 445 | QTextStream ts(&input); |
| 446 | QString magicString = ts.readLine(); |
| 447 | if(magicString != "VFdGeWFXUnZaekl3TURJd05ESTE=") return nullptr; |
| 448 | MyCanvas *newCanvas = new MyCanvas(ts, cornerRadius, ui->mainWidget); |
| 449 | input.close(); |
| 450 | return newCanvas; |
| 451 | } |
nothing calls this directly
no outgoing calls
no test coverage detected