Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorCarlos Garcia Campos <carlosgc@gnome.org>2008-11-05 19:54:09 (GMT)
committer Carlos Garcia Campos <carlosgc@src.gnome.org>2008-11-05 19:54:09 (GMT)
commit7fb7c13466e72bb0dab7ad3f6974978354092097 (patch)
tree506295d4bcec4173efa362f862f011482a18d4bf /shell
parent772a9e0893a172504825b47538881a86af03e43c (diff)
Fix build with GTK+ < 2.14
2008-11-05 Carlos Garcia Campos <carlosgc@gnome.org> * shell/ev-window.c: Fix build with GTK+ < 2.14 svn path=/trunk/; revision=3257
Diffstat (limited to 'shell')
-rw-r--r--shell/ev-window.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/shell/ev-window.c b/shell/ev-window.c
index 6e0c76e..2e2e1bc 100644
--- a/shell/ev-window.c
+++ b/shell/ev-window.c
@@ -37,7 +37,11 @@
#include <glib/gi18n.h>
#include <gio/gio.h>
#include <gtk/gtk.h>
+#if GTK_CHECK_VERSION (2, 14, 0)
#include <gtk/gtkunixprint.h>
+#else
+#include <gtk/gtkprintunixdialog.h>
+#endif
#include <gconf/gconf-client.h>
#include "egg-editable-toolbar.h"