Ignore:
Timestamp:
Oct 29, 2002, 1:19:36 PM (23 years ago)
Author:
sandervl
Message:

Wine resync

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/comctl32/listview.c

    r9247 r9370  
    7676#include <heapstring.h>
    7777#include "ccbase.h"
    78 #include "header.h"
    7978
    8079typedef struct
     
    1010810107  RECT rect;
    1010910108
    10110   if (HEADER_GetItemRect(infoPtr->hwndHeader,(WPARAM)nSubItem,(LPARAM)&rect))
     10109  if (Header_GetItemRect(infoPtr->hwndHeader,(WPARAM)nSubItem,(LPARAM)&rect))
    1011110110  {
    1011210111    lpptPosition->x = rect.left+REPORT_MARGINX;
     
    1014810147
    1014910148  nSubItem = lprc->top;
    10150   if ((nSubItem < 0) || (nSubItem >= HEADER_GetItemCount(infoPtr->hwndHeader))) return FALSE;
     10149  if ((nSubItem < 0) || (nSubItem >= Header_GetItemCount(infoPtr->hwndHeader))) return FALSE;
    1015110150  if (!LISTVIEW_GetSubItemPosition(hwnd, infoPtr,nItem,nSubItem,&ptItem)) return FALSE;
    1015210151
     
    1034710346  if (checkSubItems && (uView == LVS_REPORT))
    1034810347  {
    10349     INT nColumnCount = HEADER_GetItemCount(infoPtr->hwndHeader);
     10348    INT nColumnCount = Header_GetItemCount(infoPtr->hwndHeader);
    1035010349    INT xDiff = -infoPtr->lefttop.x*infoPtr->scrollStep.x;
    1035110350
     
    1035610355      RECT rcColumn;
    1035710356
    10358       HEADER_GetItemRect(infoPtr->hwndHeader,(WPARAM)x,(LPARAM)&rcColumn);
     10357      Header_GetItemRect(infoPtr->hwndHeader,(WPARAM)x,(LPARAM)&rcColumn);
    1035910358      rcItem.left = xDiff+REPORT_MARGINX+rcColumn.left;
    1036010359      rcItem.right = xDiff+rcColumn.right-REPORT_MARGINX;
Note: See TracChangeset for help on using the changeset viewer.