[gtk/wip/otte/whatever: 5/9] stringlist: Call splice() for adding items after construction
- From: Benjamin Otte <otte src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk/wip/otte/whatever: 5/9] stringlist: Call splice() for adding items after construction
- Date: Tue, 30 Jun 2020 21:49:17 +0000 (UTC)
commit 16145a25cbff358667ffba6d7d43dad788e158e1
Author: Benjamin Otte <otte redhat com>
Date: Tue Jun 30 23:31:02 2020 +0200
stringlist: Call splice() for adding items after construction
This has the benefit of actually allowing NULL to be passed.
gtk/gtkstringlist.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
---
diff --git a/gtk/gtkstringlist.c b/gtk/gtkstringlist.c
index a3e2af5f68..608081d500 100644
--- a/gtk/gtkstringlist.c
+++ b/gtk/gtkstringlist.c
@@ -434,12 +434,10 @@ GtkStringList *
gtk_string_list_new (const char * const *strings)
{
GtkStringList *self;
- guint i;
self = g_object_new (GTK_TYPE_STRING_LIST, NULL);
- for (i = 0; strings[i]; i++)
- g_sequence_append (self->items, gtk_string_object_new (strings[i]));
+ gtk_string_list_splice (self, 0, 0, strings);
return self;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]