]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed warning about using deprecated GetTextExtent() overload
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 14 May 2007 23:13:53 +0000 (23:13 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 14 May 2007 23:13:53 +0000 (23:13 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@46026 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/tabg.cpp

index cf1722b52c76328ff6f0caa2905a92841be07272..a6ade81021710d40de745369ba28821591b201f2 100644 (file)
@@ -207,7 +207,7 @@ void wxTabControl::OnDraw(wxDC& dc, bool lastInRow)
   wxColour col(m_view->GetTextColour());
   dc.SetTextForeground(col);
   dc.SetBackgroundMode(wxTRANSPARENT);
-  long textWidth, textHeight;
+  wxCoord textWidth, textHeight;
   dc.GetTextExtent(GetLabel(), &textWidth, &textHeight);
 
   int textX = (int)(tabX + (GetWidth() - textWidth)/2.0);