Skip to content
Snippets Groups Projects
Commit be609ded authored by Pospelov, Gennady's avatar Pospelov, Gennady
Browse files

Correct title in OutputDataItem.

parent dae2e8e0
No related branches found
No related tags found
No related merge requests found
......@@ -34,6 +34,8 @@ void OutputDataItem::setOutputData(OutputData<double> *data)
qDebug() << "OutputDataItem::setOutputData(OutputData<double> *data)";
delete m_data;
m_data = data;
m_xaxis_title = QString(data->getAxis(0)->getName().c_str());
m_yaxis_title = QString(data->getAxis(1)->getName().c_str());
emit modified();
}
}
......
......@@ -49,11 +49,9 @@ InstrumentView::InstrumentView(InstrumentModel *model, QWidget *parent)
createActions();
if(m_instrumentModel->rowCount(QModelIndex()) == 0) {
if(m_instrumentModel->rowCount(QModelIndex()) == 0)
onAddInstrument();
onAddInstrument();
onAddInstrument();
}
updateView();
}
......@@ -62,7 +60,6 @@ void InstrumentView::updateView()
{
qDebug() << "InstrumentView::updateView()";
m_instrumentSelector->updateSelection();
// updateMapOfNames();
}
......
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