Fix private include (#147)

Fix private include to avoid failure for some build systems.
This commit is contained in:
Jack 2019-12-13 19:00:02 +03:00 committed by Nikolaos Ftylitakis
parent 1b10ebf2ea
commit 686454f869
1 changed files with 2 additions and 3 deletions

View File

@ -18,7 +18,6 @@
#define QZXING_H
#include "QZXing_global.h"
#include "zxing/ZXing.h"
#include <QObject>
#include <QImage>
@ -102,10 +101,10 @@ public:
EncodeErrorCorrectionLevel_H
};
QZXing(QObject *parent = ZXING_NULLPTR);
QZXing(QObject *parent = Q_NULLPTR);
~QZXing();
QZXing(DecoderFormat decodeHints, QObject *parent = ZXING_NULLPTR);
QZXing(DecoderFormat decodeHints, QObject *parent = Q_NULLPTR);
#ifdef QZXING_QML