added function names to qDebug from 2 commits ago
This commit is contained in:
parent
1857c66ff1
commit
c17c34b63b
2 changed files with 3 additions and 3 deletions
|
@ -233,7 +233,7 @@ void coursesTableManager::addRow(const gradeCourse *courseToAdd)
|
|||
}
|
||||
else
|
||||
{
|
||||
qCritical() << Q_FUNC_INFO << "no course to load!";
|
||||
qCritical() << Q_FUNC_INFO << " no course to load!";
|
||||
}
|
||||
courseTBL->resizeColumnsToContents();
|
||||
|
||||
|
@ -249,7 +249,7 @@ void coursesTableManager::showGraph()
|
|||
{
|
||||
if (gp != NULL)
|
||||
{
|
||||
qDebug() << "Graph Dialog Opened. gp != NULL";
|
||||
qDebug() << Q_FUNC_INFO << " Graph Dialog Opened. gp != NULL";
|
||||
this->graph->showGraph(gp);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -150,6 +150,6 @@ void gradegraph::setVisualization()
|
|||
|
||||
void gradegraph::on_pushButton_clicked()
|
||||
{
|
||||
qDebug() << "Closed Graph Dialog";
|
||||
qDebug() << Q_FUNC_INFO << " Closed Graph Dialog";
|
||||
this->done(0);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue