]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/notebook.cpp
static wxFile::Access() added
[wxWidgets.git] / src / gtk1 / notebook.cpp
index 356a1a4c8f31b8d8038c09a3908961747538e86b..a2c5f2f9df4071d6862661544ebded6111ba1b12 100644 (file)
@@ -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;
 };