]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/carbon/listctrl_mac.cpp
fixing return values and handling of invalid files
[wxWidgets.git] / src / osx / carbon / listctrl_mac.cpp
index 2f5c444d6d3a648f18a167b7206cdb347b7e591e..82a99344fcf82f37755d889265819febebf7c29e 100644 (file)
@@ -1388,7 +1388,7 @@ wxRect wxListCtrl::GetViewRect() 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;
@@ -2853,7 +2853,7 @@ void wxMacDataBrowserListCtrlControl::DrawItem(
         if (font.Ok())
         {
             info.fontID = kThemeSpecifiedFont;
-            info.font = (CTFontRef) font.GetCTFont();
+            info.font = (CTFontRef) font.OSXGetCTFont();
             setup = true;
         }
     }