added function names to qDebug from 2 commits ago

This commit is contained in:
Sagi Dayan 2014-10-08 00:51:09 +03:00
parent 1857c66ff1
commit c17c34b63b
2 changed files with 3 additions and 3 deletions

View file

@ -233,7 +233,7 @@ void coursesTableManager::addRow(const gradeCourse *courseToAdd)
} }
else else
{ {
qCritical() << Q_FUNC_INFO << "no course to load!"; qCritical() << Q_FUNC_INFO << " no course to load!";
} }
courseTBL->resizeColumnsToContents(); courseTBL->resizeColumnsToContents();
@ -249,7 +249,7 @@ void coursesTableManager::showGraph()
{ {
if (gp != NULL) if (gp != NULL)
{ {
qDebug() << "Graph Dialog Opened. gp != NULL"; qDebug() << Q_FUNC_INFO << " Graph Dialog Opened. gp != NULL";
this->graph->showGraph(gp); this->graph->showGraph(gp);
} }
} }

View file

@ -150,6 +150,6 @@ void gradegraph::setVisualization()
void gradegraph::on_pushButton_clicked() void gradegraph::on_pushButton_clicked()
{ {
qDebug() << "Closed Graph Dialog"; qDebug() << Q_FUNC_INFO << " Closed Graph Dialog";
this->done(0); this->done(0);
} }