Fix building with < Qt 5.13.
This commit is contained in:
parent
5c2eb064bf
commit
31f63f8a32
|
@ -30,12 +30,16 @@
|
||||||
|
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
|
|
||||||
|
#if QT_VERSION < QT_VERSION_CHECK(5, 13, 0)
|
||||||
|
#include "../vmisc/defglobal.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
class TST_DXF :public QObject
|
class TST_DXF :public QObject
|
||||||
{
|
{
|
||||||
Q_OBJECT // NOLINT
|
Q_OBJECT // NOLINT
|
||||||
public:
|
public:
|
||||||
explicit TST_DXF(QObject *parent = nullptr);
|
explicit TST_DXF(QObject *parent = nullptr);
|
||||||
~TST_DXF() = default;
|
~TST_DXF() override = default;
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
void initTestCase();
|
void initTestCase();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user