]> www.fi.muni.cz Git - evince.git/blobdiff - backend/ev-document-factory.c
Updated Translation
[evince.git] / backend / ev-document-factory.c
index 0f85c7c5ee4bc649fce94f16ac0a9ec7a2dfa850..1cf301414c4e7780060c3f13d2ab4a4061c13099 100644 (file)
@@ -35,6 +35,9 @@
 #ifdef ENABLE_DJVU
 #include "djvu-document.h"
 #endif
+#ifdef ENABLE_COMICS
+#include "comics-document.h"
+#endif
 
 #include <string.h>
 
@@ -69,6 +72,12 @@ const EvDocumentType document_types[] = {
        /* dvi: */
        {"application/x-dvi",          EV_BACKEND_DVI,  dvi_document_get_type},
 #endif
+
+#ifdef ENABLE_COMICS
+       /* cbr/cbz: */
+       {"application/x-cbr",           EV_BACKEND_COMICS,  comics_document_get_type},
+       {"application/x-cbz",           EV_BACKEND_COMICS,  comics_document_get_type},
+#endif
 };
 
 #ifdef ENABLE_PIXBUF