diff options
author | Pablo Barciela <[email protected]> | 2019-03-05 02:14:49 +0100 |
---|---|---|
committer | ZenWalker <[email protected]> | 2019-03-07 00:00:20 +0100 |
commit | fc9a637006bab37dbb73c678983032111831a623 (patch) | |
tree | cd6e7ccb63135b737b244a89f0589603e3aecf1c /libcaja-private/caja-keep-last-vertical-box.c | |
parent | ee16c212d5ce11f6d782f86bb62302356b163462 (diff) | |
download | caja-fc9a637006bab37dbb73c678983032111831a623.tar.bz2 caja-fc9a637006bab37dbb73c678983032111831a623.tar.xz |
avoid variables set but not used
Diffstat (limited to 'libcaja-private/caja-keep-last-vertical-box.c')
-rw-r--r-- | libcaja-private/caja-keep-last-vertical-box.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libcaja-private/caja-keep-last-vertical-box.c b/libcaja-private/caja-keep-last-vertical-box.c index 2304acb4..b158c81a 100644 --- a/libcaja-private/caja-keep-last-vertical-box.c +++ b/libcaja-private/caja-keep-last-vertical-box.c @@ -89,7 +89,6 @@ static void caja_keep_last_vertical_box_size_allocate (GtkWidget *widget, GtkAllocation *allocation) { - GtkBox *box; GtkWidget *last_child, *child; GList *children, *l; GtkAllocation last_child_allocation, child_allocation, tiny_allocation; @@ -99,7 +98,6 @@ caja_keep_last_vertical_box_size_allocate (GtkWidget *widget, GTK_WIDGET_CLASS (caja_keep_last_vertical_box_parent_class)->size_allocate (widget, allocation); - box = GTK_BOX (widget); children = gtk_container_get_children (GTK_CONTAINER (widget)); l = g_list_last (children); |