Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/properties
diff options
context:
space:
mode:
Diffstat (limited to 'properties')
-rw-r--r--properties/Makefile.am7
-rw-r--r--properties/ev-properties-main.c11
2 files changed, 9 insertions, 9 deletions
diff --git a/properties/Makefile.am b/properties/Makefile.am
index 597fb5a..e00edd8 100644
--- a/properties/Makefile.am
+++ b/properties/Makefile.am
@@ -4,7 +4,6 @@ INCLUDES= \
-DDATADIR=\"$(pkgdatadir)\" \
-DGNOMELOCALEDIR=\"$(datadir)/locale\" \
-I$(top_srcdir)/backend \
- -I$(top_srcdir)/pdf \
$(PROPERTIES_CFLAGS) \
$(NAUTILUS_CFLAGS) \
$(EVINCE_DISABLE_DEPRECATED) \
@@ -33,6 +32,6 @@ libevince_properties_page_la_SOURCES = \
libevince_properties_page_la_LIBADD = \
$(PROPERTIES_LIBS) \
libevproperties.la \
- $(top_builddir)/pdf/libpdfdocument.la \
- $(top_builddir)/backend/libevbackend.la \
- $(top_builddir)/lib/libev.la
+ $(top_builddir)/shell/libevbackendfactory.la \
+ $(top_builddir)/lib/libev.la \
+ -ltiff -lz
diff --git a/properties/ev-properties-main.c b/properties/ev-properties-main.c
index 87f4a59..64f5707 100644
--- a/properties/ev-properties-main.c
+++ b/properties/ev-properties-main.c
@@ -28,7 +28,7 @@
*/
#include "ev-properties-view.h"
-#include "pdf-document.h"
+#include "ev-document-factory.h"
#include <config.h>
#include <string.h>
@@ -83,6 +83,7 @@ ev_properties_get_pages (NautilusPropertyPageProvider *provider,
GList *files)
{
GError *error;
+ char *mime;
EvDocument *document;
GList *pages = NULL;
NautilusFileInfo *file;
@@ -95,12 +96,12 @@ ev_properties_get_pages (NautilusPropertyPageProvider *provider,
goto end;
file = files->data;
- if (!nautilus_file_info_is_mime_type (file, "application/pdf")) {
- goto end;
- }
/* okay, make the page */
- document = EV_DOCUMENT (pdf_document_new ());
+ mime = nautilus_file_info_get_mime_type (file);
+ document = ev_document_factory_get_document (mime);
+ g_free (mime);
+
uri = nautilus_file_info_get_uri (file);
if (!ev_document_load (document, uri, &error)) {
g_error_free (error);