From bfd0555665857a976bad376c16ba38da779375a4 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 14 May 2007 23:13:53 +0000 Subject: [PATCH] fixed warning about using deprecated GetTextExtent() overload git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@46026 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/generic/tabg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.45.2