summaryrefslogtreecommitdiff
path: root/cut-n-paste-code
diff options
context:
space:
mode:
authorDarin Adler <darin@src.gnome.org>2001-11-09 02:05:53 +0000
committerDarin Adler <darin@src.gnome.org>2001-11-09 02:05:53 +0000
commit4a2255079a7276551867636b356b5bcbc0aec410 (patch)
tree69eb88b13b8b7b00ee7c45f23324f060643e218c /cut-n-paste-code
parentee16c763834e080df4649df8df8af7ec85903539 (diff)
downloadnautilus-4a2255079a7276551867636b356b5bcbc0aec410.tar.gz
Lots of files. Get rid a lot of unneeded casts.
* Lots of files. Get rid a lot of unneeded casts.
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 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;