mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10: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)
|
void gGraphView::AddGraph(gGraph *g,short group)
|
||||||
{
|
{
|
||||||
|
if (!g) {
|
||||||
|
qDebug() << "Attempted to add an empty graph!";
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (!m_graphs.contains(g)) {
|
if (!m_graphs.contains(g)) {
|
||||||
g->setGroup(group);
|
g->setGroup(group);
|
||||||
m_graphs.push_back(g);
|
m_graphs.push_back(g);
|
||||||
|
@ -78,10 +78,12 @@ void Report::showEvent (QShowEvent * event)
|
|||||||
}
|
}
|
||||||
void Report::ReloadGraphs()
|
void Report::ReloadGraphs()
|
||||||
{
|
{
|
||||||
|
for (int i=0;i<graphs.size();i++) {
|
||||||
|
graphs[i]->setDay(NULL);
|
||||||
|
}
|
||||||
ui->startDate->setDate(profile->FirstDay());
|
ui->startDate->setDate(profile->FirstDay());
|
||||||
ui->endDate->setDate(profile->LastDay());
|
ui->endDate->setDate(profile->LastDay());
|
||||||
for (int i=0;i<graphs.size();i++) {
|
for (int i=0;i<graphs.size();i++) {
|
||||||
graphs[i]->setDay(NULL);
|
|
||||||
graphs[i]->ResetBounds();
|
graphs[i]->ResetBounds();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user