]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/imaglist.cpp
a wxCHECK added
[wxWidgets.git] / src / generic / imaglist.cpp
index b0dc6594c747ca113abeca02dc0c707654b4aba8..0c41c5255d1b5e6009d18f972aee312b46f60dd8 100644 (file)
@@ -61,7 +61,7 @@ const wxBitmap *wxImageList::GetBitmap( int index ) const
 {
     wxNode *node = m_images.Nth( index );
     
 {
     wxNode *node = m_images.Nth( index );
     
-    wxCHECK_MSG( node, (wxBitmap *) NULL, "wrong index in image list" );
+    wxCHECK_MSG( node, (wxBitmap *) NULL, _T("wrong index in image list") );
     
     return (wxBitmap*)node->Data();
 }
     
     return (wxBitmap*)node->Data();
 }
@@ -70,7 +70,7 @@ bool wxImageList::Replace( int index, const wxBitmap &bitmap )
 {
     wxNode *node = m_images.Nth( index );
     
 {
     wxNode *node = m_images.Nth( index );
     
-    wxCHECK_MSG( node, FALSE, "wrong index in image list" );
+    wxCHECK_MSG( node, FALSE, _T("wrong index in image list") );
 
     wxBitmap* newBitmap = NULL;
     if (bitmap.IsKindOf(CLASSINFO(wxIcon)))
 
     wxBitmap* newBitmap = NULL;
     if (bitmap.IsKindOf(CLASSINFO(wxIcon)))
@@ -97,7 +97,7 @@ bool wxImageList::Remove( int index )
 {
     wxNode *node = m_images.Nth( index );
     
 {
     wxNode *node = m_images.Nth( index );
     
-    wxCHECK_MSG( node, FALSE, "wrong index in image list" );
+    wxCHECK_MSG( node, FALSE, _T("wrong index in image list") );
     
     m_images.DeleteNode( node );
      
     
     m_images.DeleteNode( node );
      
@@ -118,7 +118,7 @@ bool wxImageList::GetSize( int index, int &width, int &height ) const
     
     wxNode *node = m_images.Nth( index );
     
     
     wxNode *node = m_images.Nth( index );
     
-    wxCHECK_MSG( node, FALSE, "wrong index in image list" );
+    wxCHECK_MSG( node, FALSE, _T("wrong index in image list") );
     
     wxBitmap *bm = (wxBitmap*)node->Data();
     width = bm->GetWidth();
     
     wxBitmap *bm = (wxBitmap*)node->Data();
     width = bm->GetWidth();
@@ -132,7 +132,7 @@ bool wxImageList::Draw( int index, wxDC &dc, int x, int y,
 {
     wxNode *node = m_images.Nth( index );
     
 {
     wxNode *node = m_images.Nth( index );
     
-    wxCHECK_MSG( node, FALSE, "wrong index in image list" );
+    wxCHECK_MSG( node, FALSE, _T("wrong index in image list") );
     
     wxBitmap *bm = (wxBitmap*)node->Data();
 
     
     wxBitmap *bm = (wxBitmap*)node->Data();