X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/385e8575dd1f9219fb0e3f7fa26ffe4c24d2fdbb..572f4ad212f7f5d4e1bad60d4c30a682ce3f3152:/src/gtk/bmpcbox.cpp diff --git a/src/gtk/bmpcbox.cpp b/src/gtk/bmpcbox.cpp index b625542b10..672413d798 100644 --- a/src/gtk/bmpcbox.cpp +++ b/src/gtk/bmpcbox.cpp @@ -30,6 +30,7 @@ #include "wx/log.h" #endif +#include #include "wx/gtk/private.h" // ============================================================================ @@ -121,7 +122,12 @@ void wxBitmapComboBox::GTKCreateComboBoxWidget() } else { +#ifdef __WXGTK3__ + m_widget = gtk_combo_box_new_with_model_and_entry(GTK_TREE_MODEL(store)); + gtk_combo_box_set_entry_text_column(GTK_COMBO_BOX(m_widget), m_stringCellIndex); +#else m_widget = gtk_combo_box_entry_new_with_model( GTK_TREE_MODEL(store), m_stringCellIndex ); +#endif m_entry = GTK_ENTRY(gtk_bin_get_child(GTK_BIN(m_widget))); gtk_editable_set_editable(GTK_EDITABLE(m_entry), true); } @@ -224,7 +230,7 @@ wxBitmap wxBitmapComboBox::GetItemBitmap(unsigned int n) const if ( pixbuf ) { g_object_ref( pixbuf ); - bitmap.SetPixbuf( pixbuf ); + bitmap = wxBitmap(pixbuf); } g_value_unset( &value ); }