]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/notebook.cpp
Mark a couple of labels for translation.
[wxWidgets.git] / src / gtk / notebook.cpp
index 13bc0dae9dedf3d882042f50004faba93a25c5c6..d2920aff509931c7d8ab80c0ce8bbff6f541f721 100644 (file)
@@ -373,7 +373,7 @@ bool wxNotebook::InsertPage( size_t position,
                wxT("Can't add a page whose parent is not the notebook!") );
 
     wxCHECK_MSG( position <= GetPageCount(), false,
-                 _T("invalid page index in wxNotebookPage::InsertPage()") );
+                 wxT("invalid page index in wxNotebookPage::InsertPage()") );
 
     // Hack Alert! (Part II): See above in wxNotebook::AddChildGTK
     // why this has to be done.
@@ -422,7 +422,7 @@ bool wxNotebook::InsertPage( size_t position,
     gtk_notebook_insert_page(notebook, win->m_widget, pageData->m_box, position);
 
     /* apply current style */
-    GtkRcStyle *style = CreateWidgetStyle();
+    GtkRcStyle *style = GTKCreateWidgetStyle();
     if ( style )
     {
         gtk_widget_modify_style(pageData->m_label, style);