Eliminating signed comp warning

This commit is contained in:
tamasmeszaros 2018-07-03 15:09:12 +02:00
parent c73f702922
commit 16ec625483

View file

@ -229,7 +229,7 @@ class Wrapper: public IProgressIndicator, public wxEvtHandler {
if(!gauge_->IsShown()) showProgress(true);
stbar_->SetStatusText(message_);
if(st == gauge_->GetRange()) {
if(static_cast<long>(st) == gauge_->GetRange()) {
gauge_->SetValue(0);
showProgress(false);
} else {