Changeset 2446 for trunk/src


Ignore:
Timestamp:
Jan 15, 2000, 4:37:31 PM (26 years ago)
Author:
sandervl
Message:

cvs merge messed things up

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/new/win32wbasenonclient.cpp

    r2445 r2446  
    1 /* $Id: win32wbasenonclient.cpp,v 1.9 2000-01-15 15:05:37 sandervl Exp $ */
     1/* $Id: win32wbasenonclient.cpp,v 1.10 2000-01-15 15:37:31 sandervl Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2 (non-client methods)
     
    194194    if ((wParam & 0x0f) != HTHSCROLL) return;
    195195    scrollbar = SB_HORZ;
    196   }
    197   else  /* SC_VSCROLL */
     196  } else  /* SC_VSCROLL */
    198197  {
    199198    if ((wParam & 0x0f) != HTVSCROLL) return;
     
    204203  pt.y -= rectWindow.top;
    205204  SCROLL_HandleScrollEvent(Win32Hwnd,0,MAKELONG(pt.x,pt.y),scrollbar,WM_LBUTTONDOWN);
    206   if (GetCapture() != getWindowHandle()) return;
     205  if (GetCapture() != Win32Hwnd) return;
    207206  do
    208207  {
     
    237236      break;
    238237    }
    239   }
    240   while (msg.message != WM_LBUTTONUP);
     238  } while (msg.message != WM_LBUTTONUP);
    241239}
    242240//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.