[MinGW-Notify] [mingw] #41041: Define of TreeView_GetItemRect error

Back to archive index
MinGW Notification List mingw****@lists*****
Mon May 10 06:06:11 JST 2021


#41041: Define of TreeView_GetItemRect error

  Open Date: 2020-12-10 04:17
Last Update: 2021-05-09 22:06

URL for this Ticket:
    https://osdn.net//projects/mingw/ticket/41041
RSS feed for this Ticket:
    https://osdn.net/ticket/ticket_rss.php?group_id=3917&tid=41041

---------------------------------------------------------------------

Last Changes/Comment on this Ticket:
2021-05-09 22:06 Updated by: keith
 * Status Update from Open to Closed
 * Resolution Update from Accepted to Fixed

Comment:

I committed #0c111ac; since you didn't offer a timely response to my request for attribution details, the ChangeLog will reflect only my own details, as committer.

---------------------------------------------------------------------
Ticket Status:

      Reporter: royqh1979
         Owner: keith
          Type: Issues
        Status: Closed
      Priority: 5 - Medium
     MileStone: (None)
     Component: (None)
      Severity: 5 - Medium
    Resolution: Fixed
---------------------------------------------------------------------

Ticket details:

In include/commctrl.h, line 4587-4590:
#define TreeView_GetItemRect( w, i, p, c )				\
  (*(HTREEITEM *)((p) = (i)),						\
    (BOOL)(SNDMSG ((w), TVM_GETITEMRECT, (c), (LPARAM)((LPRECT)(p))))	\
  )
line 4588
  (*(HTREEITEM *)((p) = (i)),
is wrong; should be:
  ((*(HTREEITEM *)(p) = (i)),


-- 
Ticket information of MinGW - Minimalist GNU for Windows project
MinGW - Minimalist GNU for Windows Project is hosted on OSDN

Project URL: https://osdn.net/projects/mingw/
OSDN: https://osdn.net

URL for this Ticket:
    https://osdn.net/projects/mingw/ticket/41041
RSS feed for this Ticket:
    https://osdn.net/ticket/ticket_rss.php?group_id=3917&tid=41041



More information about the MinGW-Notify mailing list
Back to archive index