Convert remaining occurences of stri[n]cmp to str[n]casecmp.
This also reverses the substitution logic if strcasecmp is missing (config.h.cmake)
This commit is contained in:
committed by
Maciej Suminski
parent
f1226afc89
commit
bfb6e0bbb2
@@ -174,7 +174,7 @@ bool BITMAP_BASE::LoadData( LINE_READER& aLine, wxString& aErrorMsg )
|
||||
|
||||
line = aLine.Line();
|
||||
|
||||
if( strnicmp( line, "EndData", 4 ) == 0 )
|
||||
if( strncasecmp( line, "EndData", 4 ) == 0 )
|
||||
{
|
||||
// all the PNG date is read.
|
||||
// We expect here m_image and m_bitmap are void
|
||||
|
||||
Reference in New Issue
Block a user