From 375c5a0076045f68ddbfd8e3503cbd6d428f9486 Mon Sep 17 00:00:00 2001 From: Olivier Goffart Date: Tue, 31 May 2016 18:42:00 +0200 Subject: Properly forward-declare the Apple types with Q_QDOC They are needed for the header to be parsed properly with clang based qdoc. While we are at it, change the condition from Q_OS_MAC to Q_OS_DARWIN Change-Id: I2a2f9c1159f47795d9811023d67c86fec1866846 Reviewed-by: Jake Petroules --- src/corelib/io/qurl.h | 4 ++-- src/corelib/plugin/quuid.h | 2 +- src/corelib/tools/qbytearray.h | 4 ++-- src/corelib/tools/qdatetime.h | 4 ++-- src/corelib/tools/qstring.h | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/corelib/io/qurl.h b/src/corelib/io/qurl.h index c565ac408e..bce271fcb1 100644 --- a/src/corelib/io/qurl.h +++ b/src/corelib/io/qurl.h @@ -48,7 +48,7 @@ #include #include -#if defined(Q_OS_MAC) +#if defined(Q_OS_DARWIN) || defined(Q_QDOC) Q_FORWARD_DECLARE_CF_TYPE(CFURL); Q_FORWARD_DECLARE_OBJC_CLASS(NSURL); #endif @@ -275,7 +275,7 @@ public: static QByteArray toPercentEncoding(const QString &, const QByteArray &exclude = QByteArray(), const QByteArray &include = QByteArray()); -#if defined(Q_OS_MAC) || defined(Q_QDOC) +#if defined(Q_OS_DARWIN) || defined(Q_QDOC) static QUrl fromCFURL(CFURLRef url); CFURLRef toCFURL() const Q_DECL_CF_RETURNS_RETAINED; static QUrl fromNSURL(const NSURL *url); diff --git a/src/corelib/plugin/quuid.h b/src/corelib/plugin/quuid.h index fef0beba11..264f572993 100644 --- a/src/corelib/plugin/quuid.h +++ b/src/corelib/plugin/quuid.h @@ -55,7 +55,7 @@ typedef struct _GUID #endif #endif -#if defined(Q_OS_DARWIN) +#if defined(Q_OS_DARWIN) || defined(Q_QDOC) Q_FORWARD_DECLARE_CF_TYPE(CFUUID); Q_FORWARD_DECLARE_OBJC_CLASS(NSUUID); #endif diff --git a/src/corelib/tools/qbytearray.h b/src/corelib/tools/qbytearray.h index 97c44629eb..477402d6de 100644 --- a/src/corelib/tools/qbytearray.h +++ b/src/corelib/tools/qbytearray.h @@ -56,7 +56,7 @@ #error qbytearray.h must be included before any header file that defines truncate #endif -#if defined(Q_OS_MAC) +#if defined(Q_OS_DARWIN) || defined(Q_QDOC) Q_FORWARD_DECLARE_CF_TYPE(CFData); Q_FORWARD_DECLARE_OBJC_CLASS(NSData); #endif @@ -382,7 +382,7 @@ public: static QByteArray fromHex(const QByteArray &hexEncoded) Q_REQUIRED_RESULT; static QByteArray fromPercentEncoding(const QByteArray &pctEncoded, char percent = '%') Q_REQUIRED_RESULT; -#if defined(Q_OS_MAC) || defined(Q_QDOC) +#if defined(Q_OS_DARWIN) || defined(Q_QDOC) static QByteArray fromCFData(CFDataRef data); static QByteArray fromRawCFData(CFDataRef data); CFDataRef toCFData() const Q_DECL_CF_RETURNS_RETAINED; diff --git a/src/corelib/tools/qdatetime.h b/src/corelib/tools/qdatetime.h index f698ec3221..cd4644d76a 100644 --- a/src/corelib/tools/qdatetime.h +++ b/src/corelib/tools/qdatetime.h @@ -46,7 +46,7 @@ #include -#if defined(Q_OS_MAC) +#if defined(Q_OS_DARWIN) || defined(Q_QDOC) Q_FORWARD_DECLARE_CF_TYPE(CFDate); Q_FORWARD_DECLARE_OBJC_CLASS(NSDate); #endif @@ -311,7 +311,7 @@ public: #endif static qint64 currentMSecsSinceEpoch() Q_DECL_NOTHROW; -#if defined(Q_OS_MAC) || defined(Q_QDOC) +#if defined(Q_OS_DARWIN) || defined(Q_QDOC) static QDateTime fromCFDate(CFDateRef date); CFDateRef toCFDate() const Q_DECL_CF_RETURNS_RETAINED; static QDateTime fromNSDate(const NSDate *date); diff --git a/src/corelib/tools/qstring.h b/src/corelib/tools/qstring.h index 6599a5b18c..06287c056d 100644 --- a/src/corelib/tools/qstring.h +++ b/src/corelib/tools/qstring.h @@ -68,7 +68,7 @@ namespace std #error qstring.h must be included before any header file that defines truncate #endif -#if defined(Q_OS_MAC) +#if defined(Q_OS_DARWIN) || defined(Q_QDOC) Q_FORWARD_DECLARE_CF_TYPE(CFString); Q_FORWARD_DECLARE_OBJC_CLASS(NSString); #endif @@ -778,7 +778,7 @@ public: inline std::u32string toStdU32String() const; #endif -#if defined(Q_OS_MAC) || defined(Q_QDOC) +#if defined(Q_OS_DARWIN) || defined(Q_QDOC) static QString fromCFString(CFStringRef string); CFStringRef toCFString() const Q_DECL_CF_RETURNS_RETAINED; static QString fromNSString(const NSString *string); -- cgit v1.2.3