From 16ec625483326c609f264ee4e8086e0a9f38c509 Mon Sep 17 00:00:00 2001 From: tamasmeszaros Date: Tue, 3 Jul 2018 15:09:12 +0200 Subject: [PATCH] Eliminating signed comp warning --- xs/src/slic3r/AppControllerWx.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xs/src/slic3r/AppControllerWx.cpp b/xs/src/slic3r/AppControllerWx.cpp index 8dd6643d5..4e116c7b9 100644 --- a/xs/src/slic3r/AppControllerWx.cpp +++ b/xs/src/slic3r/AppControllerWx.cpp @@ -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(st) == gauge_->GetRange()) { gauge_->SetValue(0); showProgress(false); } else {