]> git.saurik.com Git - wxWidgets.git/commitdiff
compile fix
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 26 Jul 1999 10:48:56 +0000 (10:48 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 26 Jul 1999 10:48:56 +0000 (10:48 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3143 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/listctrl.cpp

index 445a8b05c9b415e25da1ddc2c56d002d05d2db88..56e6b6c1ace9001af8701a59878a5ee84d371bc6 100644 (file)
@@ -20,7 +20,7 @@
 
 #include "wx/dcscreen.h"
 #include "wx/app.h"
-#include "wx/generic/listctrl.h"
+#include "wx/listctrl.h"
 #include "wx/generic/imaglist.h"
 
 //-----------------------------------------------------------------------------
@@ -1142,7 +1142,7 @@ void wxListMainWindow::DeleteLine( wxListLineData *line )
 wxTextCtrl *wxListMainWindow::EditLabel( long item )
 {
     wxNode *node = m_lines.Nth( item );
-    wxCHECK_RET( node, _T("wrong index in wxListCtrl::Edit()") );
+    wxCHECK_MSG( node, (wxTextCtrl *)NULL, _T("wrong index in wxListCtrl::Edit()") );
     
     m_currentEdit = (wxListLineData*) node->Data();