Ignore:
Timestamp:
Nov 21, 1999, 6:34:11 PM (26 years ago)
Author:
achimha
Message:

fixed combo box behavior, added NULL check in Combo_HandleText

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/combo.cpp

    r1794 r1802  
    1 /* $Id: combo.cpp,v 1.17 1999-11-21 14:04:10 achimha Exp $ */
     1/* $Id: combo.cpp,v 1.18 1999-11-21 17:34:10 achimha Exp $ */
    22/*
    33 * Combo controls
     
    14941494  LPHEADCOMBO lphc = (LPHEADCOMBO)GetInfoPtr(hwnd);
    14951495
     1496  if (lphc == NULL)
     1497  {
     1498    dprintf(("COMBO_HandleText Info Pointer NULL!\n"));
     1499    return CB_ERR;
     1500  }
     1501
    14961502  if ((message == WM_GETTEXTLENGTH) && !(lphc->wState & CBF_EDIT))
    14971503  {
Note: See TracChangeset for help on using the changeset viewer.