]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/listctrl.cpp
Avoid outputting the assert message twice in non-GUI code.
[wxWidgets.git] / src / msw / listctrl.cpp
index 52bf721d5ee5cb12edad7b0ee562e16d7e35a36e..8efb534922cc1a5a4ea417274fe7b97493e0af53 100644 (file)
@@ -1183,7 +1183,7 @@ bool wxListCtrl::GetSubItemRect(long item, long subItem, wxRect& rect, int code)
     // there is no way to retrieve the first sub item bounding rectangle using
     // wxGetListCtrlSubItemRect() as 0 means the whole item, so we need to
     // truncate it at first column ourselves
-    if ( subItem == 0 )
+    if ( subItem == 0 && code == wxLIST_RECT_BOUNDS )
         rect.width = GetColumnWidth(0);
 
     return true;