X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9eb2347dc3527c32e6a041cba51431bf47c4eac4..74b1f0b45e0f0bc7e25c5f32bb495e3e4bcd3392:/src/msw/statbmp.cpp diff --git a/src/msw/statbmp.cpp b/src/msw/statbmp.cpp index 418541bfd9..4a460f8816 100644 --- a/src/msw/statbmp.cpp +++ b/src/msw/statbmp.cpp @@ -119,7 +119,7 @@ static wxGDIImage* ConvertImage( const wxGDIImage& bitmap ) if( !isIcon ) { wxASSERT_MSG( wxDynamicCast(&bitmap, wxBitmap), - _T("not an icon and not a bitmap?") ); + wxT("not an icon and not a bitmap?") ); const wxBitmap& bmp = (const wxBitmap&)bitmap; wxMask *mask = bmp.GetMask(); @@ -158,7 +158,7 @@ bool wxStaticBitmap::Create(wxWindow *parent, m_isIcon = image->IsKindOf( CLASSINFO(wxIcon) ); // create the native control - if ( !MSWCreateControl(_T("STATIC"), wxEmptyString, pos, size) ) + if ( !MSWCreateControl(wxT("STATIC"), wxEmptyString, pos, size) ) { // control creation failed return false; @@ -211,10 +211,10 @@ bool wxStaticBitmap::ImageIsOk() const wxIcon wxStaticBitmap::GetIcon() const { - wxCHECK_MSG( m_image, wxIcon(), _T("no image in wxStaticBitmap") ); + wxCHECK_MSG( m_image, wxIcon(), wxT("no image in wxStaticBitmap") ); // we can't ask for an icon if all we have is a bitmap - wxCHECK_MSG( m_isIcon, wxIcon(), _T("no icon in this wxStaticBitmap") ); + wxCHECK_MSG( m_isIcon, wxIcon(), wxT("no icon in this wxStaticBitmap") ); return *(wxIcon *)m_image; } @@ -231,7 +231,7 @@ wxBitmap wxStaticBitmap::GetBitmap() const } else // we have a bitmap { - wxCHECK_MSG( m_image, wxBitmap(), _T("no image in wxStaticBitmap") ); + wxCHECK_MSG( m_image, wxBitmap(), wxT("no image in wxStaticBitmap") ); return *(wxBitmap *)m_image; }