Skip to content
Snippets Groups Projects
Commit 0ffc4994 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

..

parent 01bace61
No related branches found
No related tags found
1 merge request!2113rm PlotEventInfo
...@@ -29,20 +29,18 @@ PlotEventInfo::PlotEventInfo(PLOT_TYPE type) ...@@ -29,20 +29,18 @@ PlotEventInfo::PlotEventInfo(PLOT_TYPE type)
QString PlotEventInfo::statusString() const QString PlotEventInfo::statusString() const
{ {
QString result; if (m_info_type == PLOT_TYPE::Plot1D)
result = m_info_type == PLOT_TYPE::Plot1D return QString(" [x: %1, y: %2] [binx: %3]")
? QString(" [x: %1, y: %2] [binx: %3]") .arg(QString::number(x(), 'f', 4))
.arg(QString::number(x(), 'f', 4)) .arg(valueToString())
.arg(valueToString()) .arg(m_nx, 2);
.arg(m_nx, 2) else
: QString(" [x: %1, y: %2] [binx: %3, biny:%4] [value: %5]") return QString(" [x: %1, y: %2] [binx: %3, biny:%4] [value: %5]")
.arg(QString::number(x(), 'f', 4)) .arg(QString::number(x(), 'f', 4))
.arg(QString::number(y(), 'f', 4), 2) .arg(QString::number(y(), 'f', 4), 2)
.arg(m_nx, 2) .arg(m_nx, 2)
.arg(m_ny, 2) .arg(m_ny, 2)
.arg(valueToString()); .arg(valueToString());
return result;
} }
QString PlotEventInfo::valueToString() const QString PlotEventInfo::valueToString() const
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment