Ignore:
Timestamp:
Jul 5, 2002, 9:13:36 AM (23 years ago)
Author:
umoeller
Message:

Second round of fixes for 0.9.19.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/comctl.c

    r178 r184  
    632632            free(pmbd);
    633633    }
     634
    634635    return brc;
    635636}
     
    10051006    }
    10061007
    1007     return (pa);
     1008    return pa;
    10081009}
    10091010
     
    11411142        }
    11421143    }
     1144
    11431145    return (paNew != NULL);
    11441146}
     
    14201422BOOL ctlMakeHotkeyEntryField(HWND hwndHotkeyEntryField)
    14211423{
    1422     PFNWP pfnwpOrig = WinSubclassWindow(hwndHotkeyEntryField,
    1423                                         ctl_fnwpObjectHotkeyEntryField);
    1424     if (pfnwpOrig)
     1424    PFNWP pfnwpOrig;
     1425    if (pfnwpOrig = WinSubclassWindow(hwndHotkeyEntryField,
     1426                                      ctl_fnwpObjectHotkeyEntryField))
    14251427    {
    14261428        WinSetWindowPtr(hwndHotkeyEntryField, QWL_USER, (PVOID)pfnwpOrig);
    1427         return (TRUE);
     1429        return TRUE;
    14281430    }
    14291431
    1430     return (FALSE);
     1432    return FALSE;
    14311433}
    14321434
Note: See TracChangeset for help on using the changeset viewer.