pyscripter / MustangpeakEasyListView

Mustangpeak EasyListview is a fast and very customizable TListview replacement. It can also be used with the VirtualShellTools component of the MustangPeak Library.
Other
6 stars 2 forks source link

Does not compile in XE2 64 bit. #3

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Solution

In file EasyListView.pas replace

    Pt := SmallPointToPoint(TSmallPoint(Msg.lParam));

with

    {$IFDEF WIN64}
    Pt := SmallPointToPoint(TSmallPoint(Int64Rec(Msg.lParam).Lo));
    {$ELSE}
    Pt := SmallPointToPoint(TSmallPoint(Msg.lParam));
    $ENDIF}

Original issue reported on code.google.com by pyscripter on 26 Nov 2011 at 2:58

GoogleCodeExporter commented 9 years ago
Fixed in version control and tested with demos.

Original comment by pyscripter on 17 Dec 2011 at 1:13