X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e0b9ad2982c05e79f8e221a16e0622233a324bdb..493902ac5be1c347e35c3550cd35d68696d02a61:/src/msw/statbmp.cpp diff --git a/src/msw/statbmp.cpp b/src/msw/statbmp.cpp index db1d8b11d3..07f6dfe1a9 100644 --- a/src/msw/statbmp.cpp +++ b/src/msw/statbmp.cpp @@ -98,12 +98,6 @@ bool wxStaticBitmap::Create(wxWindow *parent, long style, const wxString& name) { - // default border for this control is none - if ( (style & wxBORDER_MASK) == wxBORDER_DEFAULT ) - { - style |= wxBORDER_NONE; - } - if ( !CreateControl(parent, id, pos, size, style, wxDefaultValidator, name) ) return FALSE; @@ -128,7 +122,7 @@ bool wxStaticBitmap::Create(wxWindow *parent, #else // Win16 _T("BUTTON"), #endif // Win32/16 - _T(""), pos, size) ) + wxEmptyString, pos, size) ) { // control creation failed return FALSE; @@ -140,6 +134,11 @@ bool wxStaticBitmap::Create(wxWindow *parent, return TRUE; } +wxBorder wxStaticBitmap::GetDefaultBorder() const +{ + return wxBORDER_NONE; +} + WXDWORD wxStaticBitmap::MSWGetStyle(long style, WXDWORD *exstyle) const { WXDWORD msStyle = wxControl::MSWGetStyle(style, exstyle); @@ -270,10 +269,12 @@ long wxStaticBitmap::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam) { +#ifndef __WXWINCE__ // Ensure that static items get messages. Some controls don't like this // message to be intercepted (e.g. RichEdit), hence the tests. if ( nMsg == WM_NCHITTEST ) return (long)HTCLIENT; +#endif return wxWindow::MSWWindowProc(nMsg, wParam, lParam); }