http://bugs.winehq.org/show_bug.cgi?id=3107
--- Comment #15 from Igor Tarasov tarasov.igor@gmail.com 2009-02-17 05:14:50 --- Created an attachment (id=19511) --> (http://bugs.winehq.org/attachment.cgi?id=19511) patch that makes listview forward HDN_ITEMCLICK
As it all came out, the problem is in that the listview does not forward HDN_ITEMCLICK notification to the application.
When listview receive HDN_ITEMCLICK it has to issue LVN_COLUMNCLICK to itself, and forward HDN_ITEMCLICK to listview owner. But wine's listview only did the first thing. That's why several applications that do reorder items in listview by their own fail to do this.
The patch fixes this.