From: David Elliott Date: Wed, 9 Jul 2003 18:37:18 +0000 (+0000) Subject: Implement SetBackground() X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/7bc429ef0a060fdf0cdd5023098cdbb9d55ea123 Implement SetBackground() git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21801 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/cocoa/dc.mm b/src/cocoa/dc.mm index 681663b4aa..d440fe1eed 100644 --- a/src/cocoa/dc.mm +++ b/src/cocoa/dc.mm @@ -347,8 +347,9 @@ void wxDC::Clear() { } -void wxDC::SetBackground(const wxBrush&) +void wxDC::SetBackground(const wxBrush& brush) { + m_backgroundBrush = brush; } void wxDC::SetPalette(const wxPalette&)