summaryrefslogtreecommitdiffstats
path: root/src/speedcheck.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/speedcheck.cpp')
-rw-r--r--src/speedcheck.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/speedcheck.cpp b/src/speedcheck.cpp
index 45a5c85..fae4b88 100644
--- a/src/speedcheck.cpp
+++ b/src/speedcheck.cpp
@@ -42,8 +42,8 @@ SpeedCheck::~SpeedCheck()
void SpeedCheck::logMessage(QString message)
{
- qDebug() << message;
- _ui->statusBar->showMessage(message);
+ // qDebug() << message;
+ _ui->statusBar->showMessage(message);
}
void SpeedCheck::selectClicked(bool) {
_fileName = QFileDialog::getOpenFileName(this, tr("Select benchmark file"));
@@ -64,7 +64,7 @@ void SpeedCheck::startClicked(bool)
_ui->comboBox->setDisabled(true);
delete _thread;
_thread = new CopyThread(file, this);
- connect(_thread, SIGNAL(logMessage(QString)), this, SLOT(logMessage(QString)), Qt::QueuedConnection);
+ connect(_thread, SIGNAL(logMessage(QString)), this, SLOT(logMessage(QString)), Qt::QueuedConnection);
connect(_thread, SIGNAL(finished()), this, SLOT(testFinished()), Qt::QueuedConnection);
_timer.start();
_thread->start();