#include "wx/panel.h"
#include "wx/utils.h"
#include "wx/imaglist.h"
+#include "wx/intl.h"
#include "wx/log.h"
//-----------------------------------------------------------------------------
node = node->Next();
};
- wxCHECK_MSG( node != NULL, -1, _("wxNotebook: no selection?"));
+ wxCHECK_MSG( node != NULL, -1, "wxNotebook: no selection?" );
return page->m_id;
};
node = node->Next();
};
- wxLogDebug( _("Notebook page %d not found!"), page );
+ wxLogDebug( "Notebook page %d not found!", page );
return NULL;
};