Skip to content
Snippets Groups Projects
Commit 12ccf548 authored by Robert Whitley's avatar Robert Whitley
Browse files

Refs #4135. Fix Compiler Warnings.

parent 429bbc41
No related merge requests found
......@@ -75,11 +75,13 @@ private slots:
private:
void populateLogValues(const QVector<QString>& fittedWsList);
void populateFittings(const QVector<QString>& fittedWsList);
std::string getFileName();
Ui::MuonAnalysis& m_uiForm;
int m_numLogsAndParamsDisplayed;
QMap<QString, QMap<QString, double> > m_tableValues;
Ui::MuonAnalysis& m_uiForm;
};
}
......
......@@ -325,7 +325,7 @@ void MuonAnalysisResultTableTab::createTable()
}
// Get the user selected log file and parameters
for (size_t i = 0; i < m_numLogsAndParamsDisplayed; i++)
for (int i = 0; i < m_numLogsAndParamsDisplayed; i++)
{
QCheckBox* includeCell = static_cast<QCheckBox*>(m_uiForm.valueTable->cellWidget(i,3));
if (includeCell->isChecked())
......
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