| 432 | } |
| 433 | |
| 434 | void MyCanvas::SaveToFile(const QString &path){ |
| 435 | QFile output(path); |
| 436 | output.open(QIODevice::WriteOnly | QIODevice::Text); |
| 437 | QTextStream ts(&output); |
| 438 | ts << "VFdGeWFXUnZaekl3TURJd05ESTE=\n"; |
| 439 | ts << canvasName << "\n"; |
| 440 | ts << canvasDescription << "\n"; |
| 441 | ts << structure_type << " " << type << "\n"; |
| 442 | view->SaveToFile(ts); |
| 443 | output.close(); |
| 444 | } |
| 445 | |
| 446 | void MyCanvas::addVex(MyGraphicsVexItem *vex){ |
| 447 | g->AddVex(vex); |
nothing calls this directly
no outgoing calls
no test coverage detected