aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-pdf/mainUI.h
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-11-29 13:30:01 -0500
committerKen Moore <ken@ixsystems.com>2017-11-29 13:30:01 -0500
commit9c30dd9c444e16aef845b8c756383a12a6afc147 (patch)
tree893dbdf111bec637de22fc15f635188838595544 /src-qt5/desktop-utils/lumina-pdf/mainUI.h
parentWork out the best(?) scaling system to use when loading PDF files. (diff)
downloadlumina-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/mainUI.h')
-rw-r--r--src-qt5/desktop-utils/lumina-pdf/mainUI.h2
1 files changed, 1 insertions, 1 deletions
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{
bgstack15