diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2006-07-06 05:14:03 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2006-07-06 05:14:03 +0000 |
commit | f8794ccccadc91bd37a4fe19577fc789cf0d0107 (patch) | |
tree | 47fea3e572b4614ca5aada3be8a53ea671e34980 /gtk/gtktreestore.c | |
parent | e5afc7e33198a7b694e4177de7802e80d0be1aec (diff) | |
download | gtk+-f8794ccccadc91bd37a4fe19577fc789cf0d0107.tar.gz |
Improve consistency of signal and property names
Diffstat (limited to 'gtk/gtktreestore.c')
-rw-r--r-- | gtk/gtktreestore.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gtk/gtktreestore.c b/gtk/gtktreestore.c index f13c5ec74a..740b293f4d 100644 --- a/gtk/gtktreestore.c +++ b/gtk/gtktreestore.c @@ -248,8 +248,7 @@ gtk_tree_store_new (gint n_columns, GType type = va_arg (args, GType); if (! _gtk_tree_data_list_check_type (type)) { - g_warning ("%s: Invalid type %s passed to gtk_tree_store_new_with_types\n", - G_STRLOC, g_type_name (type)); + g_warning ("%s: Invalid type %s\n", G_STRLOC, g_type_name (type)); g_object_unref (retval); return NULL; } @@ -284,8 +283,7 @@ gtk_tree_store_newv (gint n_columns, { if (! _gtk_tree_data_list_check_type (types[i])) { - g_warning ("%s: Invalid type %s passed to gtk_tree_store_new_with_types\n", - G_STRLOC, g_type_name (types[i])); + g_warning ("%s: Invalid type %s\n", G_STRLOC, g_type_name (types[i])); g_object_unref (retval); return NULL; } @@ -322,7 +320,7 @@ gtk_tree_store_set_column_types (GtkTreeStore *tree_store, { if (! _gtk_tree_data_list_check_type (types[i])) { - g_warning ("%s: Invalid type %s passed to gtk_tree_store_set_column_types\n", G_STRLOC, g_type_name (types[i])); + g_warning ("%s: Invalid type %s\n", G_STRLOC, g_type_name (types[i])); continue; } gtk_tree_store_set_column_type (tree_store, i, types[i]); @@ -378,7 +376,7 @@ gtk_tree_store_set_column_type (GtkTreeStore *tree_store, { if (!_gtk_tree_data_list_check_type (type)) { - g_warning ("%s: Invalid type %s passed to gtk_tree_store_new_with_types\n", G_STRLOC, g_type_name (type)); + g_warning ("%s: Invalid type %s\n", G_STRLOC, g_type_name (type)); return; } tree_store->column_headers[column] = type; |