Ignore:
Timestamp:
Oct 8, 1999, 11:26:08 PM (26 years ago)
Author:
cbratschi
Message:

merged with WINE, other fixes

File:
1 edited

Legend:

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

    r1184 r1203  
    1 /* $Id: scroll.cpp,v 1.6 1999-10-08 12:10:27 cbratschi Exp $ */
     1/* $Id: scroll.cpp,v 1.7 1999-10-08 21:25:47 cbratschi Exp $ */
    22/*
    33 * Scrollbar control
     
    77 * Copyright 1993 Martin Ayotte
    88 * Copyright 1994, 1996 Alexandre Julliard
     9 *
     10 * WINE version: 990923
    911 */
    1012
     
    11821184    UINT new_flags;
    11831185
    1184     //dbg_decl_str(scroll, 256);
    1185 
    11861186   *action = 0;
    11871187
     
    11941194    if (info->fMask & SIF_PAGE)
    11951195    {
    1196         //dsprintf(scroll, " page=%d", info->nPage );
    11971196        if( infoPtr->Page != info->nPage )
    11981197        {
     
    12161215    if (info->fMask & SIF_RANGE)
    12171216    {
    1218         //dsprintf(scroll, " min=%d max=%d", info->nMin, info->nMax );
    1219 
    12201217        /* Invalid range -> range is set to (0,0) */
    12211218        if ((info->nMin > info->nMax) ||
     
    12361233        }
    12371234    }
    1238 
    1239     //TRACE("hwnd=%04x bar=%d %s\n",
    1240     //                hwnd, nBar, dbg_str(scroll));
    12411235
    12421236    /* Make sure the page size is valid */
Note: See TracChangeset for help on using the changeset viewer.