reverted the last change -- what was it for?

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@17459 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2002-10-05 11:45:42 +00:00
parent 372b0e766c
commit d4ffadcd7c

View File

@@ -851,12 +851,6 @@ void MyCanvas::OnPaint(wxPaintEvent& WXUNUSED(event) )
dc.SetTextForeground(wxGetApp().m_canvasTextColour);
dc.SetBackgroundMode(wxTRANSPARENT);
dc.DrawText("wxWindows common dialogs test application", 10, 10);
dc.SetPen( *wxRED_PEN );
dc.DrawLine( 10,40,200,40 );
dc.SetPen( *wxBLACK_PEN );
dc.DrawLine( 10,50,200,50 );
}
// ----------------------------------------------------------------------------