mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
parent
f152ee25ce
commit
c74ae467e8
@ -859,7 +859,10 @@ int Graph::loadDatFile(const QString &fileName) {
|
||||
qDeleteAll(g->mutable_axes());
|
||||
g->mutable_axes().clear();
|
||||
g->countY = 0;
|
||||
delete[] g->cPointsY;
|
||||
if (g->cPointsY != nullptr) {
|
||||
delete[] g->cPointsY;
|
||||
g->cPointsY = nullptr;
|
||||
}
|
||||
if (Variable.isEmpty()) return 0;
|
||||
|
||||
#if 0 // FIXME encapsulation. implement digital waves later.
|
||||
|
@ -48,8 +48,11 @@ Graph::Graph(Diagram const* d, const QString& _Line) :
|
||||
|
||||
Graph::~Graph()
|
||||
{
|
||||
if (cPointsY != nullptr) {
|
||||
delete[] cPointsY;
|
||||
qDeleteAll(cPointsX);
|
||||
cPointsY = nullptr;
|
||||
}
|
||||
qDeleteAll(cPointsX);
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------
|
||||
|
Loading…
x
Reference in New Issue
Block a user