Fixed bug in DoDrawRotatedText: it wasn't deleting the font when done

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5809 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Guillermo Rodriguez Garcia 2000-02-02 19:48:01 +00:00
parent 8771a3239e
commit a3a1ceae81

View File

@ -778,6 +778,7 @@ void wxDC::DoDrawRotatedText(const wxString& text,
DrawAnyText(text, x, y);
(void)::SelectObject(GetHdc(), hfontOld);
(void)::DeleteObject(hfont);
}
// call the bounding box by adding all four vertices of the rectangle
@ -1379,7 +1380,6 @@ bool wxDC::DoBlit(wxCoord xdest, wxCoord ydest,
wxLogLastError("BitBlt");
}
}
::SetTextColor(GetHdc(), old_textground);
::SetBkColor(GetHdc(), old_background);