diff options
author | Matthias Clasen <mclasen@redhat.com> | 2005-03-26 05:49:15 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-03-26 05:49:15 +0000 |
commit | 4c28ce0877e5749d9d930304397995535190a168 (patch) | |
tree | 53429d9310a84cc9825774d9ae6808a8963c6e30 /gtk/gtktreeviewcolumn.c | |
parent | 6323876b413c591edb1779fd5897066d6a4983f5 (diff) | |
download | gtk+-4c28ce0877e5749d9d930304397995535190a168.tar.gz |
Use canonical names for g_object_notify() as well.
2005-03-26 Matthias Clasen <mclasen@redhat.com>
* gtk/*.c:
* gdk/gdkdisplaymanager.c:
Use canonical names for g_object_notify() as well.
Diffstat (limited to 'gtk/gtktreeviewcolumn.c')
-rw-r--r-- | gtk/gtktreeviewcolumn.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gtk/gtktreeviewcolumn.c b/gtk/gtktreeviewcolumn.c index 17c46f8782..cfa94d131a 100644 --- a/gtk/gtktreeviewcolumn.c +++ b/gtk/gtktreeviewcolumn.c @@ -1919,7 +1919,7 @@ gtk_tree_view_column_set_fixed_width (GtkTreeViewColumn *tree_column, gtk_widget_queue_resize (tree_column->tree_view); } - g_object_notify (G_OBJECT (tree_column), "fixed_width"); + g_object_notify (G_OBJECT (tree_column), "fixed-width"); } /** @@ -1970,9 +1970,9 @@ gtk_tree_view_column_set_min_width (GtkTreeViewColumn *tree_column, if (tree_column->max_width != -1 && tree_column->max_width < min_width) { tree_column->max_width = min_width; - g_object_notify (G_OBJECT (tree_column), "max_width"); + g_object_notify (G_OBJECT (tree_column), "max-width"); } - g_object_notify (G_OBJECT (tree_column), "min_width"); + g_object_notify (G_OBJECT (tree_column), "min-width"); g_object_thaw_notify (G_OBJECT (tree_column)); if (tree_column->column_type == GTK_TREE_VIEW_COLUMN_AUTOSIZE) @@ -2030,9 +2030,9 @@ gtk_tree_view_column_set_max_width (GtkTreeViewColumn *tree_column, if (max_width != -1 && max_width < tree_column->min_width) { tree_column->min_width = max_width; - g_object_notify (G_OBJECT (tree_column), "min_width"); + g_object_notify (G_OBJECT (tree_column), "min-width"); } - g_object_notify (G_OBJECT (tree_column), "max_width"); + g_object_notify (G_OBJECT (tree_column), "max-width"); g_object_thaw_notify (G_OBJECT (tree_column)); if (tree_column->column_type == GTK_TREE_VIEW_COLUMN_AUTOSIZE) @@ -2433,7 +2433,7 @@ gtk_tree_view_column_set_sort_indicator (GtkTreeViewColumn *tree_column, tree_column->show_sort_indicator = setting; gtk_tree_view_column_update_button (tree_column); - g_object_notify (G_OBJECT (tree_column), "sort_indicator"); + g_object_notify (G_OBJECT (tree_column), "sort-indicator"); } /** @@ -2480,7 +2480,7 @@ gtk_tree_view_column_set_sort_order (GtkTreeViewColumn *tree_column, tree_column->sort_order = order; gtk_tree_view_column_update_button (tree_column); - g_object_notify (G_OBJECT (tree_column), "sort_order"); + g_object_notify (G_OBJECT (tree_column), "sort-order"); } /** @@ -2538,10 +2538,10 @@ gtk_tree_view_column_cell_set_cell_data (GtkTreeViewColumn *tree_column, g_object_freeze_notify (cell); if (info->cell->is_expander != is_expander) - g_object_set (cell, "is_expander", is_expander, NULL); + g_object_set (cell, "is-expander", is_expander, NULL); if (info->cell->is_expanded != is_expanded) - g_object_set (cell, "is_expanded", is_expanded, NULL); + g_object_set (cell, "is-expanded", is_expanded, NULL); while (list && list->next) { |