32 lines
853 B
Diff
32 lines
853 B
Diff
diff --git a/src/app/qrcodescannermodel.cpp b/src/app/qrcodescannermodel.cpp
|
|
index cea49eab..aac3ea35 100644
|
|
--- a/src/app/qrcodescannermodel.cpp
|
|
+++ b/src/app/qrcodescannermodel.cpp
|
|
@@ -17,9 +17,8 @@
|
|
|
|
#include "qrcodescannermodel.h"
|
|
|
|
-#include <Barcode.h>
|
|
-#include <MultiFormatReader.h>
|
|
-#include <ReadBarcode.h>
|
|
+#include <ZXing/Barcode.h>
|
|
+#include <ZXing/ReadBarcode.h>
|
|
|
|
#include <QDebug>
|
|
|
|
diff --git a/src/app/utils.cpp b/src/app/utils.cpp
|
|
index b02a21e5..c2ddb383 100644
|
|
--- a/src/app/utils.cpp
|
|
+++ b/src/app/utils.cpp
|
|
@@ -47,8 +47,8 @@
|
|
#include <windows.h>
|
|
#endif
|
|
|
|
-#include <BitMatrix.h>
|
|
-#include <MultiFormatWriter.h>
|
|
+#include <ZXing/BitMatrix.h>
|
|
+#include <ZXing/MultiFormatWriter.h>
|
|
|
|
// Removes the given argument from the command line arguments, and invokes the callback
|
|
// function with the removed argument if it was found.
|