Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/ev-convert-metadata.c
diff options
context:
space:
mode:
authorCarlos Garcia Campos <carlosgc@gnome.org>2010-03-31 19:09:00 (GMT)
committer Carlos Garcia Campos <carlosgc@gnome.org>2010-03-31 19:09:00 (GMT)
commit80aa207c49dda77a013f0df2a2e2a393062a96b6 (patch)
tree8bc68cd259cd466866c1713547fd32f12654201a /shell/ev-convert-metadata.c
parent7e11393f41b7c3df86e1562bcc08a42b05c19a6f (diff)
[shell] Fix build with GSEAL_ENABLE
Diffstat (limited to 'shell/ev-convert-metadata.c')
-rw-r--r--shell/ev-convert-metadata.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/shell/ev-convert-metadata.c b/shell/ev-convert-metadata.c
index 9f24ed0..dc9fbe8 100644
--- a/shell/ev-convert-metadata.c
+++ b/shell/ev-convert-metadata.c
@@ -156,6 +156,7 @@ static void
show_progress_dialog (ConvertData *data)
{
GtkWidget *dialog;
+ GtkWidget *action_area;
GtkWidget *vbox, *pbox;
GtkWidget *label;
GtkWidget *progress;
@@ -166,9 +167,10 @@ show_progress_dialog (ConvertData *data)
GTK_DIALOG_NO_SEPARATOR,
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
NULL);
+ action_area = gtk_dialog_get_action_area (GTK_DIALOG (dialog));
gtk_container_set_border_width (GTK_CONTAINER (dialog), 5);
- gtk_container_set_border_width (GTK_CONTAINER (GTK_DIALOG (dialog)->action_area), 5);
- gtk_box_set_spacing (GTK_BOX (GTK_DIALOG (dialog)->action_area), 6);
+ gtk_container_set_border_width (GTK_CONTAINER (action_area), 5);
+ gtk_box_set_spacing (GTK_BOX (action_area), 6);
vbox = gtk_dialog_get_content_area (GTK_DIALOG (dialog));
gtk_box_set_spacing (GTK_BOX (vbox), 12);