From: Jaakko Salli Date: Mon, 10 May 2010 14:16:07 +0000 (+0000) Subject: Make text printed by wxGraphicsContext shorter X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a29df0623194319a0f7c670e22424f1f69159a80 Make text printed by wxGraphicsContext shorter git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64274 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/printing/printing.cpp b/samples/printing/printing.cpp index 4b15b80930..e79361807e 100644 --- a/samples/printing/printing.cpp +++ b/samples/printing/printing.cpp @@ -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);