diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2002-01-28 18:52:49 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2002-01-28 18:52:49 +0000 |
commit | e2b730ac43a27e91217a0d5602eff948f29533f5 (patch) | |
tree | 415cc297ea4c01e4c6d889dd14c4b4cf43603b01 /gtk/gtktable.c | |
parent | 929c8ed53e821f3f48dafc2757cb6b7cdc16cd7c (diff) | |
download | gdk-pixbuf-e2b730ac43a27e91217a0d5602eff948f29533f5.tar.gz |
General property notification cleanup.
Diffstat (limited to 'gtk/gtktable.c')
-rw-r--r-- | gtk/gtktable.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gtk/gtktable.c b/gtk/gtktable.c index 18c697f55..eedbb7a99 100644 --- a/gtk/gtktable.c +++ b/gtk/gtktable.c @@ -640,8 +640,6 @@ gtk_table_set_row_spacing (GtkTable *table, if (GTK_WIDGET_VISIBLE (table)) gtk_widget_queue_resize (GTK_WIDGET (table)); } - - g_object_notify (G_OBJECT (table), "row_spacing"); } /** @@ -679,8 +677,6 @@ gtk_table_set_col_spacing (GtkTable *table, if (GTK_WIDGET_VISIBLE (table)) gtk_widget_queue_resize (GTK_WIDGET (table)); } - - g_object_notify (G_OBJECT (table), "column_spacing"); } /** @@ -717,6 +713,8 @@ 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"); } /** @@ -751,6 +749,8 @@ 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"); } /** @@ -784,6 +784,8 @@ gtk_table_set_homogeneous (GtkTable *table, if (GTK_WIDGET_VISIBLE (table)) gtk_widget_queue_resize (GTK_WIDGET (table)); + + g_object_notify (G_OBJECT (table), "homogeneous"); } } |