Ignore:
Timestamp:
Oct 19, 2011, 11:00:18 PM (14 years ago)
Author:
dmik
Message:

strcmpi -> stricmp.

The former is deprecated since long and missing in GCC.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/gcc-kmk/src/user32/window.cpp

    r21720 r21726  
    117117    else dprintf(("CreateWindowExA: window %s class %d parent %x (%d,%d) (%d,%d), %x %x menu=%x", windowName, className, parent, x, y, width, height, style, exStyle, menu));
    118118
    119     if(!strcmpi(className, MDICLIENTCLASSNAMEA)) {
     119    if(!stricmp(className, MDICLIENTCLASSNAMEA)) {
    120120        window = (Win32BaseWindow *) new Win32MDIClientWindow(&cs, classAtom, FALSE);
    121121    }
    122122    else
    123     if(!strcmpi((char *) className, DIALOG_CLASS_NAMEA))
     123    if(!stricmp((char *) className, DIALOG_CLASS_NAMEA))
    124124    {
    125125      DLG_TEMPLATE dlgTemplate = {0};
Note: See TracChangeset for help on using the changeset viewer.