Make text printed by wxGraphicsContext shorter

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64274 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Jaakko Salli 2010-05-10 14:16:07 +00:00
parent a5e40d85a4
commit a29df06231

View File

@ -247,7 +247,7 @@ void MyApp::Draw(wxDC&dc)
gc->StrokePath(path);
// draw some text
wxString text("This text is drawn by wxGraphicsContext");
wxString text("Text by wxGraphicsContext");
gc->SetFont( m_testFont, *wxBLUE );
gc->DrawText(text, 50.0, 50.0);