]> git.saurik.com Git - wxWidgets.git/commitdiff
using proper SubItemRect
authorStefan Csomor <csomor@advancedconcepts.ch>
Wed, 15 Apr 2009 16:55:01 +0000 (16:55 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Wed, 15 Apr 2009 16:55:01 +0000 (16:55 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60164 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/osx/carbon/listctrl_mac.cpp

index 915fd58aefd7abd492ce89b2ecf365075044184a..82a99344fcf82f37755d889265819febebf7c29e 100644 (file)
@@ -1385,10 +1385,10 @@ wxRect wxListCtrl::GetViewRect() const
     return rect;
 }
 
-bool wxListCtrl::GetSubItemRect( long item, long WXUNUSED(subItem), wxRect& rect, int code ) const
+bool wxListCtrl::GetSubItemRect( long item, long subItem, wxRect& rect, int code ) const
 {
     if (m_genericImpl)
-        return m_genericImpl->GetItemRect(item, rect, code);
+        return m_genericImpl->GetSubItemRect(item, subItem, rect, code);
 
     // TODO: implement for DataBrowser implementation        
     return false;