diff --git a/ChangeLog b/ChangeLog index 26e7ac9d9..afc0cab36 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2002-10-11 Martin Baulig + + * gtk/Combo.custom: New file. + (Combo.SetPopdownStrings): New method to set the popdown strings + from a string array. + 2002-10-11 Martin Baulig * glib/ListBase.cs (ListBase.Append): New public method. diff --git a/gtk/Combo.custom b/gtk/Combo.custom new file mode 100644 index 000000000..906b04656 --- /dev/null +++ b/gtk/Combo.custom @@ -0,0 +1,7 @@ + +public void SetPopdownStrings (params string[] args) { + GLib.List list = new GLib.List (IntPtr.Zero, typeof (string)); + foreach (string arg in args) + list.Append (Marshal.StringToHGlobalAnsi (arg)); + PopdownStrings = list; +}