]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/notebook.cpp
allow adjusting the combo button size (patch 1489452)
[wxWidgets.git] / src / gtk / notebook.cpp
index 38938182da7c9a0975d506ce9d5a0c74b79d62d5..34dd2bf59dba8d76414e88094fc2b3622e0a811c 100644 (file)
@@ -18,9 +18,9 @@
     #include "wx/intl.h"
     #include "wx/log.h"
     #include "wx/utils.h"
+    #include "wx/panel.h"
 #endif
 
-#include "wx/panel.h"
 #include "wx/imaglist.h"
 #include "wx/bitmap.h"
 #include "wx/fontutil.h"
@@ -694,7 +694,7 @@ bool wxNotebook::InsertPage( size_t position,
     /* set the label text */
 
     nb_page->m_text = text;
-    if (nb_page->m_text.empty()) nb_page->m_text = wxT("");
+    if (nb_page->m_text.empty()) nb_page->m_text = wxEmptyString;
 
     nb_page->m_label = GTK_LABEL( gtk_label_new(wxGTK_CONV(nb_page->m_text)) );
     gtk_box_pack_end( GTK_BOX(nb_page->m_box), GTK_WIDGET(nb_page->m_label), FALSE, FALSE, m_padding );