Less text for smaller screen.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27934 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2004-06-22 08:17:42 +00:00
parent 6c1035d3c1
commit dc96b1b674

View File

@@ -1135,7 +1135,12 @@ void MyCanvas::OnPaint(wxPaintEvent& WXUNUSED(event) )
dc.SetFont(wxGetApp().m_canvasFont);
dc.SetTextForeground(wxGetApp().m_canvasTextColour);
dc.SetBackgroundMode(wxTRANSPARENT);
dc.DrawText(_T("wxWidgets common dialogs test application"), 10, 10);
dc.DrawText(
_T("wxWidgets common dialogs")
#if !defined(__SMARTPHONE__)
_T(" test application")
#endif
, 10, 10);
}
#if USE_MODAL_PRESENTATION