From 4a2255079a7276551867636b356b5bcbc0aec410 Mon Sep 17 00:00:00 2001 From: Darin Adler Date: Fri, 9 Nov 2001 02:05:53 +0000 Subject: Lots of files. Get rid a lot of unneeded casts. * Lots of files. Get rid a lot of unneeded casts. --- cut-n-paste-code/widgets/gimphwrapbox/gtkhwrapbox.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cut-n-paste-code') diff --git a/cut-n-paste-code/widgets/gimphwrapbox/gtkhwrapbox.c b/cut-n-paste-code/widgets/gimphwrapbox/gtkhwrapbox.c index d36675975..e6de3af41 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 )) { - g_signal_emit_by_name (GTK_OBJECT (wbox), "need_reallocation", NULL); + g_signal_emit_by_name (wbox, "need_reallocation", NULL); GTK_HWRAP_BOX (wbox)->request_stored_height = TRUE; } if (total_height > area->height) { shrink_height = total_height - area->height; - g_signal_emit_by_name (GTK_OBJECT (wbox), "need_reallocation", NULL); + g_signal_emit_by_name (wbox, "need_reallocation", NULL); } else shrink_height = 0; -- cgit v1.2.1