#ifndef WX_PRECOMP
#include "wx/string.h"
#include "wx/dc.h"
+ #include "wx/settings.h"
+ #include "wx/gdicmn.h"
#endif //WX_PRECOMP
-#include "wx/gdicmn.h"
-
-#include "wx/settings.h"
#include "wx/splitter.h"
#include "wx/dcmirror.h"
#include "wx/module.h"
const wxRect& rect,
int flags)
{
- // white background
- dc.SetPen(*wxGREY_PEN);
- dc.SetBrush(*wxWHITE_BRUSH);
+ // store settings
+ wxDCPenChanger penChanger(dc, *wxGREY_PEN);
+ wxDCBrushChanger brushChanger(dc, *wxWHITE_BRUSH);
+
dc.DrawRectangle(rect);
// black lines