From: Vadim Zeitlin Date: Mon, 14 May 2007 23:13:53 +0000 (+0000) Subject: fixed warning about using deprecated GetTextExtent() overload X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/bfd0555665857a976bad376c16ba38da779375a4?ds=inline fixed warning about using deprecated GetTextExtent() overload git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@46026 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/tabg.cpp b/src/generic/tabg.cpp index cf1722b52c..a6ade81021 100644 --- a/src/generic/tabg.cpp +++ b/src/generic/tabg.cpp @@ -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);