From: Vadim Zeitlin Date: Wed, 2 Jun 2010 11:58:16 +0000 (+0000) Subject: Remove unused GetTextExtent() call from wxProgressDialog. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/80d7019761f93b05f864c8b366c4f48268b5518f Remove unused GetTextExtent() call from wxProgressDialog. This seems to be a left-over from the old, manual positioning code. As we use sizers now, it's not needed any more. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64461 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/progdlgg.cpp b/src/generic/progdlgg.cpp index 77ec484ac1..8e8eb329c7 100644 --- a/src/generic/progdlgg.cpp +++ b/src/generic/progdlgg.cpp @@ -139,11 +139,6 @@ wxProgressDialog::wxProgressDialog(const wxString& title, m_parentTop = wxGetTopLevelParent(parent); - wxClientDC dc(this); - dc.SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT)); - wxCoord widthText = 0; - dc.GetTextExtent(message, &widthText, NULL, NULL, NULL, NULL); - // top-level sizerTop wxSizer * const sizerTop = new wxBoxSizer(wxVERTICAL);