Skip to content

Commit

Permalink
Removed extra zero from label. Refs #8126.
Browse files Browse the repository at this point in the history
  • Loading branch information
jawrainey committed Oct 24, 2013
1 parent 76a27a7 commit 9c1aec1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/Mantid/MantidQt/MantidWidgets/src/ICatSearch2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -809,7 +809,7 @@ namespace MantidQt
if (workspace->rowCount() == 0)
{
clearDataFileFrame();
m_icatUiForm.dataFileLbl->setText(QString::number(workspace->rowCount()) + " 0 datafiles found.");
m_icatUiForm.dataFileLbl->setText(QString::number(workspace->rowCount()) + " datafiles found.");
return;
}

Expand Down

0 comments on commit 9c1aec1

Please sign in to comment.