]> git.saurik.com Git - wxWidgets.git/commitdiff
Remove assert checking for valid font in wxMSW wxDC::GetTextExtent().
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 19 Oct 2012 11:06:14 +0000 (11:06 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 19 Oct 2012 11:06:14 +0000 (11:06 +0000)
It wasn't there before wxTextMEasure changes and it doesn't seem obvious why
should it be there, it should be possible to measure the text using the
default wxDC font without setting one explicitly.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72706 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/dc.cpp

index fc47bd9a5a4ab674c091c678b1200a3867877248..74eec510d4dfdba07db6be739ec726ccf203fcec 100644 (file)
@@ -1867,8 +1867,6 @@ void wxMSWDCImpl::DoGetTextExtent(const wxString& string, wxCoord *x, wxCoord *y
 
 bool wxMSWDCImpl::DoGetPartialTextExtents(const wxString& text, wxArrayInt& widths) const
 {
-    wxCHECK_MSG( GetFont().IsOk(), false, wxT("Invalid font") );
-
     wxTextMeasure txm(GetOwner(), NULL); // don't change the font
     return txm.GetPartialTextExtents(text, widths, 1.0);
 }