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:
parent
8771a3239e
commit
a3a1ceae81
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user