diff --git a/gtk/ComboBox.custom b/gtk/ComboBox.custom index cf5040453..cf5ccbce0 100644 --- a/gtk/ComboBox.custom +++ b/gtk/ComboBox.custom @@ -33,7 +33,7 @@ protected ComboBox (bool with_entry) : base (IntPtr.Zero) { if (GetType () != typeof (ComboBox)) { - CreateNativeObject (new string [0], new GLib.Value[0]); + CreateNativeObject (new string[] { "has-entry" }, new GLib.Value[] { new GLib.Value (with_entry) }); return; } diff --git a/gtk/ComboBoxText.cs b/gtk/ComboBoxText.cs index e4a6e68eb..1134931db 100644 --- a/gtk/ComboBoxText.cs +++ b/gtk/ComboBoxText.cs @@ -27,7 +27,8 @@ namespace Gtk { protected ComboBoxText (bool has_entry) : base (IntPtr.Zero) { if (GetType () != typeof (ComboBoxText)) { - CreateNativeObject (new string[] { "has-entry" }, new GLib.Value[] { new GLib.Value (has_entry) }); + CreateNativeObject (new string[] { "has-entry", "entry-text-column", "id-column" }, + new GLib.Value[] { new GLib.Value (has_entry), new GLib.Value (0), new GLib.Value (1) }); return; }