Skip to content

Commit

Permalink
Re #7098. Fixed copy-paste error in SliceView peaks display.
Browse files Browse the repository at this point in the history
  • Loading branch information
peterfpeterson committed May 28, 2013
1 parent 023f650 commit da5a958
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/Mantid/MantidQt/SliceViewer/src/QPeaksTableModel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ namespace MantidQt
map.insert(std::make_pair(L, QString::number(peak.getL())));
map.insert(std::make_pair(DSPACING, QString::number(peak.getDSpacing())));
map.insert(std::make_pair(INT, QString::number(peak.getIntensity())));
map.insert(std::make_pair(SIGMINT, QString::number(peak.getIntensity())));
map.insert(std::make_pair(SIGMINT, QString::number(peak.getSigmaIntensity())));
map.insert(std::make_pair(QLAB, peak.getQLabFrame().toString().c_str()));
map.insert(std::make_pair(QSAMPLE, peak.getQSampleFrame().toString().c_str()));
return map;
Expand Down

0 comments on commit da5a958

Please sign in to comment.