X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1a5a83677555023d476401bab5809a1107222c74..6de97a3b945c99fb942209df48be26f43c1b436d:/src/gtk/notebook.cpp diff --git a/src/gtk/notebook.cpp b/src/gtk/notebook.cpp index 356a1a4c8f..a2c5f2f9df 100644 --- a/src/gtk/notebook.cpp +++ b/src/gtk/notebook.cpp @@ -16,6 +16,7 @@ #include "wx/panel.h" #include "wx/utils.h" #include "wx/imaglist.h" +#include "wx/intl.h" #include "wx/log.h" //----------------------------------------------------------------------------- @@ -184,7 +185,7 @@ int wxNotebook::GetSelection() const node = node->Next(); }; - wxCHECK_MSG( node != NULL, -1, _("wxNotebook: no selection?")); + wxCHECK_MSG( node != NULL, -1, "wxNotebook: no selection?" ); return page->m_id; }; @@ -230,7 +231,7 @@ wxNotebookPage* wxNotebook::GetNotebookPage(int page) const node = node->Next(); }; - wxLogDebug( _("Notebook page %d not found!"), page ); + wxLogDebug( "Notebook page %d not found!", page ); return NULL; };