From 896e7a4dd57734a2d365ea479f8ea2feca2c9e10 Mon Sep 17 00:00:00 2001 From: andheh <36114788+andheh@users.noreply.github.com> Date: Tue, 6 Mar 2018 10:06:17 +0100 Subject: [PATCH] fixed a "signed vs. unsigned" warning in BatchProcessDialog.cpp --- src/BatchProcessDialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BatchProcessDialog.cpp b/src/BatchProcessDialog.cpp index 99b90f409..26349b772 100644 --- a/src/BatchProcessDialog.cpp +++ b/src/BatchProcessDialog.cpp @@ -206,7 +206,7 @@ wxString ApplyMacroDialog::MacroIdOfName( const wxString & MacroName ) // Does nothing if not found, rather than returning an error. void ApplyMacroDialog::ApplyMacroToProject( const wxString & MacroID, bool bHasGui ) { - for( size_t i=0;iGetItemCount();i++){ + for( int i=0;iGetItemCount();i++){ wxString name = mMacros->GetItemText(i); if( MacroIdOfName( name ) == MacroID ){ ApplyMacroToProject( i, bHasGui );