summaryrefslogtreecommitdiff
path: root/cut-n-paste-code
diff options
context:
space:
mode:
authorDarin Adler <darin@src.gnome.org>2001-11-04 21:41:24 +0000
committerDarin Adler <darin@src.gnome.org>2001-11-04 21:41:24 +0000
commitbdcd47873fc00c8f0013a2ecc85731622b961326 (patch)
tree55a16398d6ad6c5ec459a2be9ce8d812338295c8 /cut-n-paste-code
parent137cfdb8850ee9cdb2f5b340238de5eec0f60fb0 (diff)
downloadnautilus-bdcd47873fc00c8f0013a2ecc85731622b961326.tar.gz
Tons of files. More GtkObject -> GObject stuff.
* Tons of files. More GtkObject -> GObject stuff.
Diffstat (limited to 'cut-n-paste-code')
-rw-r--r--cut-n-paste-code/widgets/gimphwrapbox/gtkhwrapbox.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cut-n-paste-code/widgets/gimphwrapbox/gtkhwrapbox.c b/cut-n-paste-code/widgets/gimphwrapbox/gtkhwrapbox.c
index b904efc23..d36675975 100644
--- a/cut-n-paste-code/widgets/gimphwrapbox/gtkhwrapbox.c
+++ b/cut-n-paste-code/widgets/gimphwrapbox/gtkhwrapbox.c
@@ -540,12 +540,12 @@ layout_rows (GtkWrapBox *wbox,
}
GTK_HWRAP_BOX (wbox)->request_this_height_next_time = total_height;
if (!(GTK_HWRAP_BOX (wbox)->request_stored_height )) {
- gtk_signal_emit_by_name (GTK_OBJECT (wbox), "need_reallocation", NULL);
+ g_signal_emit_by_name (GTK_OBJECT (wbox), "need_reallocation", NULL);
GTK_HWRAP_BOX (wbox)->request_stored_height = TRUE;
}
if (total_height > area->height) {
shrink_height = total_height - area->height;
- gtk_signal_emit_by_name (GTK_OBJECT (wbox), "need_reallocation", NULL);
+ g_signal_emit_by_name (GTK_OBJECT (wbox), "need_reallocation", NULL);
}
else
shrink_height = 0;