git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14285
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
wxArrayString nn;
if (BuildRemoteList(nn, 0, flagsSet, flagsUnset))
{
wxArrayString nn;
if (BuildRemoteList(nn, 0, flagsSet, flagsUnset))
{
- int idx;
- for (idx = 0; idx < nn.GetCount(); idx++)
+ for (size_t idx = 0; idx < nn.GetCount(); idx++)
//=============================================================================
wxIcon wxFSVolume::GetIcon(wxFSIconType type) const
{
//=============================================================================
wxIcon wxFSVolume::GetIcon(wxFSIconType type) const
{
- wxASSERT(type < m_icons.GetCount());
-
- if (type >= m_icons.GetCount())
- {
- wxLogError(_("Invalid request for icon type!"));
- wxIcon null;
- return null;
- }
+ wxCHECK_MSG( type >= 0 && (size_t)type < m_icons.GetCount(),
+ wxIcon(),
+ _T("invalid icon index") );
// Load on demand.
if (m_icons[type].IsNull())
// Load on demand.
if (m_icons[type].IsNull())