Skip to content

Commit e299046

Browse files
committed
Remove extra QString construction.
1 parent 29e951f commit e299046

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

analysis/analysisrunner.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ void AnalysisRunner::run()
149149
if ( (percentNow >= mProgression + 5) || (percentNow == 0))
150150
{
151151
mProgression = percentNow;
152-
//emitUpdate(QString(tr("%1 Sequences procceed ( %2 \% )")).arg(mSequenceCount).arg(mProgression));
152+
//emitUpdate(tr("%1 Sequences procceed ( %2 \% )").arg(mSequenceCount).arg(mProgression));
153153
}
154154
}
155155

ui/mainwindow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ void MainWindow::addFiles()
5656
}
5757
}
5858

59-
statusBar()->showMessage(QString(tr("Running on %1 threads")).arg(QThreadPool::globalInstance()->activeThreadCount()));
59+
statusBar()->showMessage(tr("Running on %1 threads").arg(QThreadPool::globalInstance()->activeThreadCount()));
6060
updateRecentMenu();
6161
}
6262

0 commit comments

Comments
 (0)