From: Stefan Csomor Date: Wed, 16 Mar 2011 06:40:07 +0000 (+0000) Subject: signed/unsigned warning fix X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/1cf59cb1786f0cf92a3a8aa1ebf6190c24ec10d5 signed/unsigned warning fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67207 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/osx/cocoa/toolbar.mm b/src/osx/cocoa/toolbar.mm index 8c1525df00..f1233ce809 100644 --- a/src/osx/cocoa/toolbar.mm +++ b/src/osx/cocoa/toolbar.mm @@ -887,7 +887,7 @@ void wxToolBar::DoLayout() // find the maximum tool width and height // and the number of stretchable items - unsigned numStretchableSpaces = 0; + int numStretchableSpaces = 0; wxToolBarTool *tool; wxToolBarToolsList::compatibility_iterator node = m_tools.GetFirst(); while ( node )