Ignore:
Timestamp:
Oct 3, 2000, 7:29:22 PM (25 years ago)
Author:
sandervl
Message:

EnumDisplaySettingsA fix + edit fix (numeric keys)

File:
1 edited

Legend:

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

    r4344 r4408  
    1 /* $Id: edit.cpp,v 1.40 2000-09-29 22:28:10 sandervl Exp $ */
     1/* $Id: edit.cpp,v 1.41 2000-10-03 17:29:22 sandervl Exp $ */
    22/*
    33 *      Edit control
     
    30113011                  if (es->style & ES_NUMBER)
    30123012                  {
    3013                     if (((BYTE)c < '0') || ((BYTE)c > '9')) MessageBeep(MB_ICONEXCLAMATION);
    3014                     return;
     3013                        if (((BYTE)c < '0') || ((BYTE)c > '9')) {
     3014                                MessageBeep(MB_ICONEXCLAMATION);
     3015                                return;
     3016                        }
    30153017                  }
    30163018                  str[0] = c;
Note: See TracChangeset for help on using the changeset viewer.