From: Robert Roebling Date: Sun, 19 Mar 2000 09:08:09 +0000 (+0000) Subject: Small speed-up. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/aaef15bf8238645e51e3b9e81e5e8d2ff45ab9cc?ds=sidebyside Small speed-up. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6844 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/listctrl.cpp b/src/generic/listctrl.cpp index 5fa1ff040b..693fd0e078 100644 --- a/src/generic/listctrl.cpp +++ b/src/generic/listctrl.cpp @@ -1709,10 +1709,9 @@ void wxListMainWindow::OnMouse( wxMouseEvent &event ) if (m_dirty) return; if ( !(event.Dragging() || event.ButtonDown() || event.LeftUp() || event.ButtonDClick()) ) return; - wxClientDC dc(this); - PrepareDC(dc); - wxCoord x = dc.DeviceToLogicalX( (wxCoord)event.GetX() ); - wxCoord y = dc.DeviceToLogicalY( (wxCoord)event.GetY() ); + int x = event.GetX(); + int y = event.GetY(); + CalcUnscrolledPosition( x, y, &x, &y ); /* Did we actually hit an item ? */ long hitResult = 0; @@ -2832,17 +2831,14 @@ long wxListMainWindow::FindItem(long start, long data) long wxListMainWindow::HitTest( int x, int y, int &flags ) { - wxClientDC dc(this); - PrepareDC(dc); - wxCoord cx = dc.DeviceToLogicalX( x ); - wxCoord cy = dc.DeviceToLogicalY( y ); + CalcUnscrolledPosition( x, y, &x, &y ); wxNode *node = m_lines.First(); int count = 0; while (node) { wxListLineData *line = (wxListLineData*)node->Data(); - long ret = line->IsHit( cx, cy ); + long ret = line->IsHit( x, y ); if (ret & flags) { flags = (int)ret;