mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Hopefully fix the empty graph crash
This commit is contained in:
parent
b65f43d90c
commit
81f5401e30
@ -1311,6 +1311,10 @@ void gGraphView::AddTextQue(QString & text, short x, short y, float angle, QColo
|
||||
|
||||
void gGraphView::AddGraph(gGraph *g,short group)
|
||||
{
|
||||
if (!g) {
|
||||
qDebug() << "Attempted to add an empty graph!";
|
||||
return;
|
||||
}
|
||||
if (!m_graphs.contains(g)) {
|
||||
g->setGroup(group);
|
||||
m_graphs.push_back(g);
|
||||
|
@ -78,10 +78,12 @@ void Report::showEvent (QShowEvent * event)
|
||||
}
|
||||
void Report::ReloadGraphs()
|
||||
{
|
||||
for (int i=0;i<graphs.size();i++) {
|
||||
graphs[i]->setDay(NULL);
|
||||
}
|
||||
ui->startDate->setDate(profile->FirstDay());
|
||||
ui->endDate->setDate(profile->LastDay());
|
||||
for (int i=0;i<graphs.size();i++) {
|
||||
graphs[i]->setDay(NULL);
|
||||
graphs[i]->ResetBounds();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user