X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/193e19cfdfc0506d9ddc19b3532d340fd7421bae..1b6f93fcfe211e81c77d7485c4c3786a846c84df:/src/univ/renderer.cpp?ds=inline diff --git a/src/univ/renderer.cpp b/src/univ/renderer.cpp index 75539ac04c..bc276a675a 100644 --- a/src/univ/renderer.cpp +++ b/src/univ/renderer.cpp @@ -38,6 +38,7 @@ #endif // WX_PRECOMP #include "wx/image.h" +#include "wx/log.h" #include "wx/univ/theme.h" #include "wx/univ/renderer.h" @@ -428,10 +429,6 @@ void wxControlRenderer::DrawLabel(const wxBitmap& bitmap, if ( bitmap.Ok() ) { rectLabel.Inflate(-marginX, -marginY); - - // I don't know why this is necessary. RR. - rectLabel.x ++; - rectLabel.y ++; } wxControl *ctrl = wxStaticCast(m_window, wxControl); @@ -512,7 +509,7 @@ void wxControlRenderer::DrawBitmap(wxDC &dc, else if ( stretch & wxEXPAND ) { // stretch bitmap to fill the entire control - bmp = wxImage(bmp.ConvertToImage()).Scale(rect.width, rect.height); + bmp = wxBitmap(wxImage(bmp.ConvertToImage()).Scale(rect.width, rect.height)); } else // not stretched, not tiled {