Skip to content

Commit

Permalink
Refs #7178. Change property not found/set messages.
Browse files Browse the repository at this point in the history
It is not an error when expected log is not found or set.
  • Loading branch information
arturbekasov committed Jan 22, 2014
1 parent a9db698 commit 3150a53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Code/Mantid/MantidQt/CustomInterfaces/src/MuonAnalysis.cpp
Expand Up @@ -1741,10 +1741,10 @@ void MuonAnalysis::inputFileChanged(const QStringList& files)
infoStr += ss.str();
}
else // Show appropriate error message.
infoStr += "Error - Not set in data file.";
infoStr += "Not set";
}
else // Show appropriate error message.
infoStr += "Error - Not found in data file.";
infoStr += "Not found";

// Include all the run information.
m_uiForm.infoBrowser->setText(infoStr.c_str());
Expand Down

0 comments on commit 3150a53

Please sign in to comment.