From 10f2222ca37dba7e4faf791e48f2aca8110c43c6 Mon Sep 17 00:00:00 2001 From: Stefan Neis Date: Sun, 26 Jun 2005 15:46:28 +0000 Subject: [PATCH] Fixed compilation error for Motif. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34762 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/generic/notebook.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/generic/notebook.cpp b/src/generic/notebook.cpp index 69f7bdd794..11b4abfe09 100644 --- a/src/generic/notebook.cpp +++ b/src/generic/notebook.cpp @@ -304,7 +304,7 @@ bool wxNotebook::RemovePage(size_t nPage) // remove one page from the notebook wxWindow* wxNotebook::DoRemovePage(size_t nPage) { - wxCHECK( IS_VALID_PAGE(nPage), false ); + wxCHECK( IS_VALID_PAGE(nPage), NULL ); m_pages[nPage]->Show(false); // m_pages[nPage]->Lower(); -- 2.45.2