Skip to content
Snippets Groups Projects
Commit 3b0308fd authored by Owen Arnold's avatar Owen Arnold
Browse files

refs #13989. Fix warning.

parent f30f2040
No related branches found
No related tags found
No related merge requests found
......@@ -57,7 +57,7 @@ public:
throw std::runtime_error("ProgressableView is null");
}
m_progressableView->clearProgress();
m_progressableView->setProgressRange(start, end);
m_progressableView->setProgressRange(static_cast<int>(start), static_cast<int>(end));
}
void doReport(const std::string &) {
......
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