Eliminating signed comp warning
This commit is contained in:
parent
c73f702922
commit
16ec625483
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue