diff options
author | Carlos Garcia Campos <[email protected]> | 2013-01-12 12:13:54 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-04-04 11:40:35 +0200 |
commit | d909dd46e93849733fc496c892fd2caef8c3d25f (patch) | |
tree | 643cb08eda3ba258f090bb42a2434f866a4bf55a /shell | |
parent | 68166966cd7a3a646fe33c622837938b86364405 (diff) | |
download | atril-d909dd46e93849733fc496c892fd2caef8c3d25f.tar.bz2 atril-d909dd46e93849733fc496c892fd2caef8c3d25f.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; |