]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/controls/controls.cpp
PCH support.
[wxWidgets.git] / samples / controls / controls.cpp
index c0b9d7924e2c15ba4c5eedeb97c4948668321d79..63c92a6883e2cb6ac8cb98a5a25ce5160cfe292e 100644 (file)
@@ -960,9 +960,9 @@ MyPanel::MyPanel( wxFrame *frame, int x, int y, int w, int h )
 
     wxBitmap bitmap( 100, 100 );
     wxMemoryDC dc;
-    dc.SetBackground(*wxGREEN);
     dc.SelectObject( bitmap );
-    dc.SetPen(*wxGREEN_PEN);
+    dc.SetBackground(*wxGREEN);
+    dc.SetPen(*wxRED_PEN);
     dc.Clear();
     dc.DrawEllipse(5, 5, 90, 90);
     dc.DrawText(_T("Bitmap"), 30, 40);