Ignore:
Timestamp:
Oct 18, 1999, 1:59:58 PM (26 years ago)
Author:
sandervl
Message:

Listbox changes + EnumChildWindow rewrite

File:
1 edited

Legend:

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

    r1348 r1351  
    1 /* $Id: listbox.cpp,v 1.8 1999-10-18 10:54:03 sandervl Exp $ */
     1/* $Id: listbox.cpp,v 1.9 1999-10-18 11:59:57 sandervl Exp $ */
    22/*
    33 * Listbox controls
     
    199199    else
    200200    {
     201        info.nMin  = 0;
     202        info.nMax  = descr->nb_items - 1;
    201203        info.nPos  = descr->top_item;
    202 
    203204        info.nPage = LISTBOX_GetCurrentPageSize( hwnd, descr );
    204205        info.fMask = SIF_RANGE | SIF_POS | SIF_PAGE;
    205         info.nMin  = 0;
    206         info.nMax = descr->nb_items;
    207 
    208206        if (descr->style & LBS_DISABLENOSCROLL)
    209207            info.fMask |= SIF_DISABLENOSCROLL;
Note: See TracChangeset for help on using the changeset viewer.