Skip to content
Snippets Groups Projects
Commit 03be3258 authored by Roman Tolchenov's avatar Roman Tolchenov
Browse files

Re #8911. Fixing the builds.

parent eaba8993
No related merge requests found
...@@ -149,7 +149,7 @@ public: ...@@ -149,7 +149,7 @@ public:
void show(QwtPlot *plot); void show(QwtPlot *plot);
void hide(); void hide();
private: private:
void setData(QwtPlotCurve *curve, const Mantid::API::MatrixWorkspace *ws, int wsIndex, const Mantid::API::MatrixWorkspace *outputWS); void setData(const Mantid::API::MatrixWorkspace *ws, int wsIndex, const Mantid::API::MatrixWorkspace *outputWS);
QwtPlotCurve *m_dataCurve; QwtPlotCurve *m_dataCurve;
QwtPlotCurve *m_calcCurve; QwtPlotCurve *m_calcCurve;
QwtPlotCurve *m_diffCurve; QwtPlotCurve *m_diffCurve;
...@@ -176,7 +176,7 @@ DatasetPlotData::DatasetPlotData(const QString& wsName, int wsIndex, const QStri ...@@ -176,7 +176,7 @@ DatasetPlotData::DatasetPlotData(const QString& wsName, int wsIndex, const QStri
throw std::runtime_error( mess.toStdString() ); throw std::runtime_error( mess.toStdString() );
} }
// check that the index is in range // check that the index is in range
if ( wsIndex >= ws->getNumberHistograms() ) if ( static_cast<size_t>(wsIndex) >= ws->getNumberHistograms() )
{ {
QString mess = QString("Spectrum %1 doesn't exist in workspace %2").arg(wsIndex).arg(wsName); QString mess = QString("Spectrum %1 doesn't exist in workspace %2").arg(wsIndex).arg(wsName);
throw std::runtime_error( mess.toStdString() ); throw std::runtime_error( mess.toStdString() );
...@@ -215,7 +215,7 @@ DatasetPlotData::~DatasetPlotData() ...@@ -215,7 +215,7 @@ DatasetPlotData::~DatasetPlotData()
} }
} }
void DatasetPlotData::setData(QwtPlotCurve *curve, const Mantid::API::MatrixWorkspace *ws, int wsIndex, const Mantid::API::MatrixWorkspace *outputWS) void DatasetPlotData::setData(const Mantid::API::MatrixWorkspace *ws, int wsIndex, const Mantid::API::MatrixWorkspace *outputWS)
{ {
std::vector<double> xValues = ws->readX(wsIndex); std::vector<double> xValues = ws->readX(wsIndex);
if ( ws->isHistogramData() ) if ( ws->isHistogramData() )
......
...@@ -104,7 +104,6 @@ set ( ...@@ -104,7 +104,6 @@ set (
qt4_wrap_cpp ( EXTRA_MOCS src/DoubleEditorFactory.h qt4_wrap_cpp ( EXTRA_MOCS src/DoubleEditorFactory.h
src/ButtonEditorFactory.h src/ButtonEditorFactory.h
src/CompositeEditorFactory.h
src/ParameterPropertyManager.h src/ParameterPropertyManager.h
) )
......
...@@ -52,7 +52,7 @@ protected: ...@@ -52,7 +52,7 @@ protected:
{ {
(void) manager; // Unused (void) manager; // Unused
auto button = new ButtonEditor(property, parent); auto button = new ButtonEditor(property, parent);
connect(button,SIGNAL(buttonClicked(QtProperty *)),this,SIGNAL(buttonClicked(QtProperty *))); this->connect(button,SIGNAL(buttonClicked(QtProperty *)),this,SIGNAL(buttonClicked(QtProperty *)));
return button; return button;
} }
}; };
......
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