|
|
|
|
@ -4,7 +4,7 @@ |
|
|
|
|
#include "pdf/popplerdirect/PdfExport.h" |
|
|
|
|
#include "pdf/popplerdirect/PdfWriter.h" |
|
|
|
|
#else |
|
|
|
|
// TODO !!!!!!!!!
|
|
|
|
|
// TODO Implement
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
XojPdfExportFactory::XojPdfExportFactory() |
|
|
|
|
@ -22,7 +22,7 @@ XojPdfExport* XojPdfExportFactory::createExport(Document* doc, ProgressListener* |
|
|
|
|
#ifdef ADVANCED_PDF_EXPORT_POPPLER |
|
|
|
|
return new PdfExport(doc, listener); |
|
|
|
|
#else |
|
|
|
|
// TODO !!!!!!!!!
|
|
|
|
|
// TODO Implement
|
|
|
|
|
return NULL; |
|
|
|
|
#endif |
|
|
|
|
} |
|
|
|
|
@ -32,6 +32,6 @@ void XojPdfExportFactory::setCompressPdfOutput(bool compress) |
|
|
|
|
#ifdef ADVANCED_PDF_EXPORT_POPPLER |
|
|
|
|
PdfWriter::setCompressPdfOutput(compress); |
|
|
|
|
#else |
|
|
|
|
// TODO !!!!!!!!!
|
|
|
|
|
// TODO Implement
|
|
|
|
|
#endif |
|
|
|
|
} |
|
|
|
|
|