diff options
author | Ken Moore <ken@ixsystems.com> | 2017-11-29 13:30:01 -0500 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2017-11-29 13:30:01 -0500 |
commit | 9c30dd9c444e16aef845b8c756383a12a6afc147 (patch) | |
tree | 893dbdf111bec637de22fc15f635188838595544 /src-qt5/desktop-utils/lumina-pdf | |
parent | Work out the best(?) scaling system to use when loading PDF files. (diff) | |
download | lumina-9c30dd9c444e16aef845b8c756383a12a6afc147.tar.gz lumina-9c30dd9c444e16aef845b8c756383a12a6afc147.tar.bz2 lumina-9c30dd9c444e16aef845b8c756383a12a6afc147.zip |
Make the poppler include path "poppler/qt5/<file.h>" rather than just the file.
This allows the poppler/qt5 path to be on *any* of the INCLUDEPATHS, rather than trying to specify a particular one through the OS-detection systems.
Diffstat (limited to 'src-qt5/desktop-utils/lumina-pdf')
-rw-r--r-- | src-qt5/desktop-utils/lumina-pdf/lumina-pdf.pro | 1 | ||||
-rw-r--r-- | src-qt5/desktop-utils/lumina-pdf/mainUI.h | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src-qt5/desktop-utils/lumina-pdf/lumina-pdf.pro b/src-qt5/desktop-utils/lumina-pdf/lumina-pdf.pro index 48102bc5..894d21f2 100644 --- a/src-qt5/desktop-utils/lumina-pdf/lumina-pdf.pro +++ b/src-qt5/desktop-utils/lumina-pdf/lumina-pdf.pro @@ -27,7 +27,6 @@ HEADERS += mainUI.h \ FORMS += mainUI.ui LIBS += -lpoppler-qt5 -INCLUDEPATH+= $${L_INCLUDEDIR}/poppler/qt5 TRANSLATIONS = i18n/l-pdf_af.ts \ i18n/l-pdf_ar.ts \ diff --git a/src-qt5/desktop-utils/lumina-pdf/mainUI.h b/src-qt5/desktop-utils/lumina-pdf/mainUI.h index ad3d6809..826891ec 100644 --- a/src-qt5/desktop-utils/lumina-pdf/mainUI.h +++ b/src-qt5/desktop-utils/lumina-pdf/mainUI.h @@ -19,7 +19,7 @@ #include <QApplication> #include <QMenu> -#include <poppler-qt5.h> +#include <poppler/qt5/poppler-qt5.h> #include "PresentationLabel.h" namespace Ui{ |