Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/backend
diff options
context:
space:
mode:
Diffstat (limited to 'backend')
-rw-r--r--backend/ev-document-factory.c24
1 files changed, 16 insertions, 8 deletions
diff --git a/backend/ev-document-factory.c b/backend/ev-document-factory.c
index a2ea526..f524e1a 100644
--- a/backend/ev-document-factory.c
+++ b/backend/ev-document-factory.c
@@ -26,22 +26,28 @@
/* The various document type backends: */
#include "ev-poppler.h"
-#include "pixbuf-document.h"
-#include "tiff-document.h"
-#include "impress-document.h"
#ifdef ENABLE_PS
#include "ps-document.h"
#endif
+#ifdef ENABLE_TIFF
+#include "tiff-document.h"
+#endif
#ifdef ENABLE_DVI
#include "dvi-document.h"
#endif
+#ifdef ENABLE_PIXBUF
+#include "pixbuf-document.h"
+#endif
#ifdef ENABLE_DJVU
#include "djvu-document.h"
#endif
#ifdef ENABLE_COMICS
#include "comics-document.h"
#endif
+#ifdef ENABLE_IMPRESS
+#include "impress-document.h"
+#endif
#include <string.h>
#include <glib/gi18n.h>
@@ -69,11 +75,6 @@ const EvDocumentType document_types[] = {
{"image/x-eps", EV_BACKEND_PS, ps_document_get_type},
#endif
-#ifdef ENABLE_IMPRESS
- /* Impress slides: */
- {"application/vnd.sun.xml.impress", EV_BACKEND_IMPRESS, impress_document_get_type},
-#endif
-
#ifdef ENABLE_TIFF
/* Tiff: */
{"image/tiff", EV_BACKEND_TIFF, tiff_document_get_type},
@@ -94,6 +95,13 @@ const EvDocumentType document_types[] = {
{"application/x-cbr", EV_BACKEND_COMICS, comics_document_get_type},
{"application/x-cbz", EV_BACKEND_COMICS, comics_document_get_type},
#endif
+
+#ifdef ENABLE_IMPRESS
+ /* Impress slides: */
+ {"application/vnd.sun.xml.impress", EV_BACKEND_IMPRESS, impress_document_get_type},
+ {"application/vnd.oasis.opendocument.presentation", EV_BACKEND_IMPRESS, impress_document_get_type},
+#endif
+
};
#ifdef ENABLE_PIXBUF