From 0acb94947f39951a1688bbaa57d3a4bf5be40dbb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Karsten=20Ball=C3=BCder?= Date: Wed, 12 Aug 1998 08:50:25 +0000 Subject: [PATCH] fixed mysterious mistakes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@508 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- user/wxLayout/wxllist.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/user/wxLayout/wxllist.cpp b/user/wxLayout/wxllist.cpp index f563ce2565..529807c1c2 100644 --- a/user/wxLayout/wxllist.cpp +++ b/user/wxLayout/wxllist.cpp @@ -594,13 +594,13 @@ wxLayoutList::FindObjectCursor(wxPoint *cpos, CoordType *offset) if((**i).GetType()==WXLO_TYPE_LINEBREAK) { if(offset) - *offset = (cpos.x > object.x) : 1 : 0; + *offset = (cpos->x > object.x) ? 1 : 0; return i; } cpos->x = object.x; // would be the coordinate of next object cpos->y = object.y; cpos->x += width; // last object's width - if(*offset) *offset = cpos->x-object.x + if(*offset) *offset = cpos->x-object.x; return i; // not found } -- 2.50.0