X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4feecbb929662fa002239fe7fc46d464b12f758e..86ac84b8ce086e6bbda58f422d41f84268606e35:/include/wx/dcbuffer.h?ds=sidebyside diff --git a/include/wx/dcbuffer.h b/include/wx/dcbuffer.h index e5c45a8247..383dfcb3ae 100644 --- a/include/wx/dcbuffer.h +++ b/include/wx/dcbuffer.h @@ -116,10 +116,6 @@ private: m_dc = dc; m_style = style; - - // inherit the same layout direction as the original DC - if ( dc && dc->IsOk() ) - CopyAttributes(*dc); } // check that the bitmap is valid and use it @@ -223,8 +219,8 @@ public: wxAutoBufferedPaintDC(wxWindow* win) : wxAutoBufferedPaintDCBase(win) { - wxASSERT_MSG( win->GetBackgroundStyle() == wxBG_STYLE_CUSTOM, - "You need to call SetBackgroundStyle(wxBG_STYLE_CUSTOM) in ctor, " + wxASSERT_MSG( win->GetBackgroundStyle() == wxBG_STYLE_PAINT, + "You need to call SetBackgroundStyle(wxBG_STYLE_PAINT) in ctor, " "and also, if needed, paint the background in wxEVT_PAINT handler." ); }