diff options
author | Carlos Garcia Campos <[email protected]> | 2013-01-12 12:13:54 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-04-04 11:42:14 +0200 |
commit | bb4e4b78eb54a5b2a221f3f38eafd8b39aec23a4 (patch) | |
tree | bd3cfde4fef720a80a8edf4cb9555d6de3c78471 /shell | |
parent | 05b1f12040d04e91e2128b3b59dd883c159b3b20 (diff) | |
download | atril-bb4e4b78eb54a5b2a221f3f38eafd8b39aec23a4.tar.bz2 atril-bb4e4b78eb54a5b2a221f3f38eafd8b39aec23a4.tar.xz |
ev-loading-message: Remove unused variables
origin commit:
https://git.gnome.org/browse/evince/commit/?h=gnome-3-8&id=3fd4162
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ev-loading-message.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/shell/ev-loading-message.c b/shell/ev-loading-message.c index b09d3479..aa7014e5 100644 --- a/shell/ev-loading-message.c +++ b/shell/ev-loading-message.c @@ -39,9 +39,7 @@ G_DEFINE_TYPE (EvLoadingMessage, ev_loading_message, GTK_TYPE_BOX) static void ev_loading_message_init (EvLoadingMessage *message) { - GtkWidget *widget = GTK_WIDGET (message); - GtkWidget *label; - GtkStyleContext *context; + GtkWidget *label; gtk_container_set_border_width (GTK_CONTAINER (message), 10); @@ -70,7 +68,6 @@ static void ev_loading_message_size_allocate (GtkWidget *widget, GtkAllocation *allocation) { - EvLoadingMessage *message = EV_LOADING_MESSAGE (widget); GtkAllocation child_allocation; GtkBorder padding; |