// headers
// ----------------------------------------------------------------------------
-#ifndef __PALMOS__
-
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma implementation "notebook.h"
#endif
#pragma hdrstop
#endif
+#ifndef __WXPALMOS__
+
#include "wx/string.h"
#include "wx/log.h"
#include "wx/settings.h"
// 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();
return retval;
}
-#endif // __PALMOS__
+#endif // __WXPALMOS__