Ignore:
Timestamp:
May 11, 2001, 10:39:46 AM (24 years ago)
Author:
sandervl
Message:

client/frame rewrite

File:
1 edited

Legend:

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

    r5404 r5685  
    1 /* $Id: static.cpp,v 1.23 2001-03-30 11:14:36 sandervl Exp $ */
     1/* $Id: static.cpp,v 1.24 2001-05-11 08:39:44 sandervl Exp $ */
    22/*
    33 * Static control
     
    413413  DWORD dwStyle = GetWindowLongA(hwnd,GWL_STYLE);
    414414  LRESULT lResult;
    415 
    416 #ifndef ODIN_HITTEST
    417   //SvL: If a static window has children, then we can't return HTTRANSPARENT
    418   //     here. For some reason PM then sends all mouse messages to the parent
    419   //     of the static window; even if they are intended for the children of
    420   //     the static window.
    421   //     TODO: This could break some win32 apps (parent not receiving mouse
    422   //           message for static window (non-child) area)
    423   if(GetWindow(hwnd, GW_HWNDFIRST) != 0) {
    424        return HTCLIENT;
    425   }
    426 #endif
    427415
    428416  if (dwStyle & SS_NOTIFY)
Note: See TracChangeset for help on using the changeset viewer.