Fix Qt5 build on Mac
Q_WS_MAC doesn't exist in Qt5 anymore, use Q_OS_DARWIN instead
This commit is contained in:
parent
f7e03e4531
commit
468e3b0eaf
|
@ -15,7 +15,7 @@
|
||||||
#include <QSettings>
|
#include <QSettings>
|
||||||
#include <QVector>
|
#include <QVector>
|
||||||
|
|
||||||
#if defined(Q_OS_UNIX) && !defined(Q_WS_MAC)
|
#if defined(Q_OS_UNIX) && !defined(Q_OS_DARWIN)
|
||||||
|
|
||||||
#include <QDBusPendingCallWatcher>
|
#include <QDBusPendingCallWatcher>
|
||||||
|
|
||||||
|
@ -65,7 +65,7 @@ public:
|
||||||
};
|
};
|
||||||
DataType dataType;
|
DataType dataType;
|
||||||
|
|
||||||
#if defined(Q_OS_UNIX) && !defined(Q_WS_MAC)
|
#if defined(Q_OS_UNIX) && !defined(Q_OS_DARWIN)
|
||||||
org::kde::KWallet* iface;
|
org::kde::KWallet* iface;
|
||||||
friend class QKeychain::JobExecutor;
|
friend class QKeychain::JobExecutor;
|
||||||
|
|
||||||
|
@ -99,7 +99,7 @@ public:
|
||||||
QByteArray binaryData;
|
QByteArray binaryData;
|
||||||
QString textData;
|
QString textData;
|
||||||
|
|
||||||
#if defined(Q_OS_UNIX) && !defined(Q_WS_MAC)
|
#if defined(Q_OS_UNIX) && !defined(Q_OS_DARWIN)
|
||||||
org::kde::KWallet* iface;
|
org::kde::KWallet* iface;
|
||||||
friend class QKeychain::JobExecutor;
|
friend class QKeychain::JobExecutor;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue