I was wondering ... if I highlighted the graphic scene
QGraphicsScene* scene = new QGraphicsScene();
and match it with a graphical representation
this->ui->graphicsView->setScene(scene);
Does the graphic view take on the role of the scene? In other words, does the graphical view remove the scene in its destructor, or should I delete the scene myself?
source share