summaryrefslogtreecommitdiff
path: root/gtk/gtktable.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2005-03-26 05:49:15 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2005-03-26 05:49:15 +0000
commit4c28ce0877e5749d9d930304397995535190a168 (patch)
tree53429d9310a84cc9825774d9ae6808a8963c6e30 /gtk/gtktable.c
parent6323876b413c591edb1779fd5897066d6a4983f5 (diff)
downloadgdk-pixbuf-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/gtktable.c')
-rw-r--r--gtk/gtktable.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtktable.c b/gtk/gtktable.c
index 2cb4474a2..055224557 100644
--- a/gtk/gtktable.c
+++ b/gtk/gtktable.c
@@ -554,7 +554,7 @@ gtk_table_resize (GtkTable *table,
table->rows[i].shrink = 0;
}
- g_object_notify (G_OBJECT (table), "n_rows");
+ g_object_notify (G_OBJECT (table), "n-rows");
}
if (n_cols != table->ncols)
@@ -576,7 +576,7 @@ gtk_table_resize (GtkTable *table,
table->cols[i].shrink = 0;
}
- g_object_notify (G_OBJECT (table), "n_columns");
+ g_object_notify (G_OBJECT (table), "n-columns");
}
}
}
@@ -735,7 +735,7 @@ gtk_table_set_row_spacings (GtkTable *table,
if (GTK_WIDGET_VISIBLE (table))
gtk_widget_queue_resize (GTK_WIDGET (table));
- g_object_notify (G_OBJECT (table), "row_spacing");
+ g_object_notify (G_OBJECT (table), "row-spacing");
}
/**
@@ -771,7 +771,7 @@ gtk_table_set_col_spacings (GtkTable *table,
if (GTK_WIDGET_VISIBLE (table))
gtk_widget_queue_resize (GTK_WIDGET (table));
- g_object_notify (G_OBJECT (table), "column_spacing");
+ g_object_notify (G_OBJECT (table), "column-spacing");
}
/**