Add more _T() in asserts...

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3101 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ove Kaaven
1999-07-23 09:49:06 +00:00
parent 59bc036c03
commit ee6db21e41
4 changed files with 4 additions and 4 deletions

View File

@@ -166,7 +166,7 @@ wxSize wxRadioBox::LayoutItems()
if ( m_majorDim == 0 )
{
// avoid dividing by 0 below
wxFAIL_MSG( "dimension of radiobox should not be 0!" );
wxFAIL_MSG( _T("dimension of radiobox should not be 0!") );
m_majorDim = 1;
}

View File

@@ -37,7 +37,7 @@ wxStaticBitmap::wxStaticBitmap( wxWindow *parent, wxWindowID id, const wxBitmap
void wxStaticBitmap::CreatePixmapWidget()
{
wxCHECK_RET( m_bitmap.Ok(), "should only be called if we have a bitmap" );
wxCHECK_RET( m_bitmap.Ok(), _T("should only be called if we have a bitmap") );
GdkBitmap *mask = (GdkBitmap *) NULL;
if ( m_bitmap.GetMask() )

View File

@@ -166,7 +166,7 @@ wxSize wxRadioBox::LayoutItems()
if ( m_majorDim == 0 )
{
// avoid dividing by 0 below
wxFAIL_MSG( "dimension of radiobox should not be 0!" );
wxFAIL_MSG( _T("dimension of radiobox should not be 0!") );
m_majorDim = 1;
}

View File

@@ -37,7 +37,7 @@ wxStaticBitmap::wxStaticBitmap( wxWindow *parent, wxWindowID id, const wxBitmap
void wxStaticBitmap::CreatePixmapWidget()
{
wxCHECK_RET( m_bitmap.Ok(), "should only be called if we have a bitmap" );
wxCHECK_RET( m_bitmap.Ok(), _T("should only be called if we have a bitmap") );
GdkBitmap *mask = (GdkBitmap *) NULL;
if ( m_bitmap.GetMask() )