From 930207fc1f66566d563b820af5d2efc7bec3b610 Mon Sep 17 00:00:00 2001 From: Giuseppe D'Angelo Date: Fri, 30 Nov 2012 15:40:14 +0000 Subject: Add more qtbase implictly-shared classes to the list QText*Format and QDns* ones are still missing. Change-Id: I8e87fba596e87289ca935717e0a90bfc0b0a26c0 Reviewed-by: hjk --- src/corelib/io/qdebug.cpp | 1 + src/corelib/io/qprocess.cpp | 1 + src/corelib/itemmodels/qabstractitemmodel.cpp | 1 + src/corelib/mimetypes/qmimetype.cpp | 1 + src/corelib/tools/qdatetime.cpp | 1 + src/dbus/qdbuspendingcall.cpp | 1 + src/dbus/qdbusunixfiledescriptor.cpp | 1 + src/gui/text/qglyphrun.cpp | 1 + src/gui/text/qrawfont.cpp | 3 ++- src/gui/text/qstatictext.cpp | 1 + src/network/access/qabstractnetworkcache.cpp | 1 + src/network/access/qhttpmultipart.cpp | 1 + src/network/access/qnetworkcookie.cpp | 1 + src/network/access/qnetworkrequest.cpp | 1 + src/network/bearer/qnetworkconfiguration.cpp | 1 + src/network/kernel/qnetworkinterface.cpp | 2 ++ src/network/kernel/qnetworkproxy.cpp | 2 ++ src/network/ssl/qsslcertificate.cpp | 1 + src/network/ssl/qsslcertificateextension.cpp | 1 + src/network/ssl/qsslcipher.cpp | 1 + src/network/ssl/qsslconfiguration.cpp | 1 + src/network/ssl/qsslerror.cpp | 1 + src/network/ssl/qsslkey.cpp | 1 + 23 files changed, 26 insertions(+), 1 deletion(-) diff --git a/src/corelib/io/qdebug.cpp b/src/corelib/io/qdebug.cpp index 8a2bd80069..656f26b0fe 100644 --- a/src/corelib/io/qdebug.cpp +++ b/src/corelib/io/qdebug.cpp @@ -53,6 +53,7 @@ /*! \class QDebug \inmodule QtCore + \ingroup shared \brief The QDebug class provides an output stream for debugging information. diff --git a/src/corelib/io/qprocess.cpp b/src/corelib/io/qprocess.cpp index ec97425d8d..2e1370ea53 100644 --- a/src/corelib/io/qprocess.cpp +++ b/src/corelib/io/qprocess.cpp @@ -111,6 +111,7 @@ QT_BEGIN_NAMESPACE \ingroup io \ingroup misc + \ingroup shared \mainclass \reentrant \since 4.6 diff --git a/src/corelib/itemmodels/qabstractitemmodel.cpp b/src/corelib/itemmodels/qabstractitemmodel.cpp index 7e4c664327..e2361e11f9 100644 --- a/src/corelib/itemmodels/qabstractitemmodel.cpp +++ b/src/corelib/itemmodels/qabstractitemmodel.cpp @@ -88,6 +88,7 @@ void QPersistentModelIndexData::destroy(QPersistentModelIndexData *data) /*! \class QPersistentModelIndex \inmodule QtCore + \ingroup shared \brief The QPersistentModelIndex class is used to locate data in a data model. diff --git a/src/corelib/mimetypes/qmimetype.cpp b/src/corelib/mimetypes/qmimetype.cpp index 80510bc914..9aedb85708 100644 --- a/src/corelib/mimetypes/qmimetype.cpp +++ b/src/corelib/mimetypes/qmimetype.cpp @@ -85,6 +85,7 @@ void QMimeTypePrivate::addGlobPattern(const QString &pattern) /*! \class QMimeType \inmodule QtCore + \ingroup shared \brief The QMimeType class describes types of file or data, represented by a MIME type string. \since 5.0 diff --git a/src/corelib/tools/qdatetime.cpp b/src/corelib/tools/qdatetime.cpp index 56dc0fade9..9ac4c1a87f 100644 --- a/src/corelib/tools/qdatetime.cpp +++ b/src/corelib/tools/qdatetime.cpp @@ -2045,6 +2045,7 @@ int QTime::elapsed() const /*! \class QDateTime \inmodule QtCore + \ingroup shared \reentrant \brief The QDateTime class provides date and time functions. diff --git a/src/dbus/qdbuspendingcall.cpp b/src/dbus/qdbuspendingcall.cpp index bbd1040e8a..2d0eb7cd77 100644 --- a/src/dbus/qdbuspendingcall.cpp +++ b/src/dbus/qdbuspendingcall.cpp @@ -55,6 +55,7 @@ QT_BEGIN_NAMESPACE /*! \class QDBusPendingCall \inmodule QtDBus + \ingroup shared \since 4.5 \brief The QDBusPendingCall class refers to one pending asynchronous call diff --git a/src/dbus/qdbusunixfiledescriptor.cpp b/src/dbus/qdbusunixfiledescriptor.cpp index ee51a156ee..0864fcba32 100644 --- a/src/dbus/qdbusunixfiledescriptor.cpp +++ b/src/dbus/qdbusunixfiledescriptor.cpp @@ -53,6 +53,7 @@ QT_BEGIN_NAMESPACE /*! \class QDBusUnixFileDescriptor \inmodule QtDBus + \ingroup shared \since 4.8 \brief The QDBusUnixFileDescriptor class holds one Unix file descriptor. diff --git a/src/gui/text/qglyphrun.cpp b/src/gui/text/qglyphrun.cpp index f46e86e88c..35884940ff 100644 --- a/src/gui/text/qglyphrun.cpp +++ b/src/gui/text/qglyphrun.cpp @@ -56,6 +56,7 @@ QT_BEGIN_NAMESPACE \inmodule QtGui \ingroup text + \ingroup shared \mainclass When Qt displays a string of text encoded in Unicode, it will first convert the Unicode points diff --git a/src/gui/text/qrawfont.cpp b/src/gui/text/qrawfont.cpp index f1191bc4b9..247fef5ca3 100644 --- a/src/gui/text/qrawfont.cpp +++ b/src/gui/text/qrawfont.cpp @@ -54,9 +54,10 @@ QT_BEGIN_NAMESPACE \class QRawFont \brief The QRawFont class provides access to a single physical instance of a font. \since 4.8 - \inmodule QtGui + \inmodule QtGui \ingroup text + \ingroup shared \mainclass \note QRawFont is a low level class. For most purposes QFont is a more appropriate class. diff --git a/src/gui/text/qstatictext.cpp b/src/gui/text/qstatictext.cpp index 0cbba1ecde..e143ab2a7f 100644 --- a/src/gui/text/qstatictext.cpp +++ b/src/gui/text/qstatictext.cpp @@ -56,6 +56,7 @@ QT_BEGIN_NAMESPACE \ingroup multimedia \ingroup text + \ingroup shared \mainclass QStaticText provides a way to cache layout data for a block of text so that it can be drawn diff --git a/src/network/access/qabstractnetworkcache.cpp b/src/network/access/qabstractnetworkcache.cpp index 71ddec7c4e..7f6873770a 100644 --- a/src/network/access/qabstractnetworkcache.cpp +++ b/src/network/access/qabstractnetworkcache.cpp @@ -84,6 +84,7 @@ Q_GLOBAL_STATIC(QNetworkCacheMetaDataPrivate, metadata_shared_invalid) /*! \class QNetworkCacheMetaData \since 4.5 + \ingroup shared \inmodule QtNetwork \brief The QNetworkCacheMetaData class provides cache information. diff --git a/src/network/access/qhttpmultipart.cpp b/src/network/access/qhttpmultipart.cpp index f48fd4dd01..d028d51118 100644 --- a/src/network/access/qhttpmultipart.cpp +++ b/src/network/access/qhttpmultipart.cpp @@ -54,6 +54,7 @@ QT_BEGIN_NAMESPACE \since 4.8 \ingroup network + \ingroup shared \inmodule QtNetwork The QHttpPart class holds a body part to be used inside a HTTP diff --git a/src/network/access/qnetworkcookie.cpp b/src/network/access/qnetworkcookie.cpp index 17fe504e5c..bfc439ef74 100644 --- a/src/network/access/qnetworkcookie.cpp +++ b/src/network/access/qnetworkcookie.cpp @@ -58,6 +58,7 @@ QT_BEGIN_NAMESPACE /*! \class QNetworkCookie \since 4.4 + \ingroup shared \inmodule QtNetwork \brief The QNetworkCookie class holds one network cookie. diff --git a/src/network/access/qnetworkrequest.cpp b/src/network/access/qnetworkrequest.cpp index b7d8dbbb20..12113cea86 100644 --- a/src/network/access/qnetworkrequest.cpp +++ b/src/network/access/qnetworkrequest.cpp @@ -59,6 +59,7 @@ QT_BEGIN_NAMESPACE \class QNetworkRequest \since 4.4 \ingroup network + \ingroup shared \inmodule QtNetwork \brief The QNetworkRequest class holds a request to be sent with QNetworkAccessManager. diff --git a/src/network/bearer/qnetworkconfiguration.cpp b/src/network/bearer/qnetworkconfiguration.cpp index b0facda2d5..6cfbda94f3 100644 --- a/src/network/bearer/qnetworkconfiguration.cpp +++ b/src/network/bearer/qnetworkconfiguration.cpp @@ -53,6 +53,7 @@ QT_BEGIN_NAMESPACE \inmodule QtNetwork \ingroup network + \ingroup shared QNetworkConfiguration encapsulates a single access point or service network. In most cases a single access point configuration can be mapped to one network diff --git a/src/network/kernel/qnetworkinterface.cpp b/src/network/kernel/qnetworkinterface.cpp index ae73cff0b3..8b85daf1a9 100644 --- a/src/network/kernel/qnetworkinterface.cpp +++ b/src/network/kernel/qnetworkinterface.cpp @@ -149,6 +149,7 @@ QString QNetworkInterfacePrivate::makeHwAddress(int len, uchar *data) \since 4.2 \reentrant \ingroup network + \ingroup shared \inmodule QtNetwork Each network interface can contain zero or more IP addresses, which @@ -342,6 +343,7 @@ void QNetworkAddressEntry::setBroadcast(const QHostAddress &newBroadcast) \since 4.2 \reentrant \ingroup network + \ingroup shared \inmodule QtNetwork QNetworkInterface represents one network interface attached to the diff --git a/src/network/kernel/qnetworkproxy.cpp b/src/network/kernel/qnetworkproxy.cpp index aa16be2b4a..60139dcc8a 100644 --- a/src/network/kernel/qnetworkproxy.cpp +++ b/src/network/kernel/qnetworkproxy.cpp @@ -49,6 +49,7 @@ \reentrant \ingroup network + \ingroup shared \inmodule QtNetwork QNetworkProxy provides the method for configuring network layer @@ -893,6 +894,7 @@ template<> void QSharedDataPointer::detach() /*! \class QNetworkProxyQuery \since 4.5 + \ingroup shared \inmodule QtNetwork \brief The QNetworkProxyQuery class is used to query the proxy settings for a socket. diff --git a/src/network/ssl/qsslcertificate.cpp b/src/network/ssl/qsslcertificate.cpp index d53c8edac2..e9353916cb 100644 --- a/src/network/ssl/qsslcertificate.cpp +++ b/src/network/ssl/qsslcertificate.cpp @@ -48,6 +48,7 @@ \reentrant \ingroup network \ingroup ssl + \ingroup shared \inmodule QtNetwork QSslCertificate stores an X509 certificate, and is commonly used diff --git a/src/network/ssl/qsslcertificateextension.cpp b/src/network/ssl/qsslcertificateextension.cpp index ae2eb20776..0bca558c87 100644 --- a/src/network/ssl/qsslcertificateextension.cpp +++ b/src/network/ssl/qsslcertificateextension.cpp @@ -48,6 +48,7 @@ \reentrant \ingroup network \ingroup ssl + \ingroup shared \inmodule QtNetwork QSslCertificateExtension provides access to an extension stored in diff --git a/src/network/ssl/qsslcipher.cpp b/src/network/ssl/qsslcipher.cpp index 16ea40965c..e67e565f83 100644 --- a/src/network/ssl/qsslcipher.cpp +++ b/src/network/ssl/qsslcipher.cpp @@ -48,6 +48,7 @@ \reentrant \ingroup network \ingroup ssl + \ingroup shared \inmodule QtNetwork QSslCipher stores information about one cryptographic cipher. It diff --git a/src/network/ssl/qsslconfiguration.cpp b/src/network/ssl/qsslconfiguration.cpp index 2a943dc7a5..91ca12ed23 100644 --- a/src/network/ssl/qsslconfiguration.cpp +++ b/src/network/ssl/qsslconfiguration.cpp @@ -60,6 +60,7 @@ const QSsl::SslOptions QSslConfigurationPrivate::defaultSslOptions = QSsl::SslOp \inmodule QtNetwork \ingroup network \ingroup ssl + \ingroup shared QSslConfiguration is used by Qt networking classes to relay information about an open SSL connection and to allow the diff --git a/src/network/ssl/qsslerror.cpp b/src/network/ssl/qsslerror.cpp index 0c6e5a40e7..f4997169e7 100644 --- a/src/network/ssl/qsslerror.cpp +++ b/src/network/ssl/qsslerror.cpp @@ -48,6 +48,7 @@ \reentrant \ingroup network \ingroup ssl + \ingroup shared \inmodule QtNetwork QSslError provides a simple API for managing errors during QSslSocket's diff --git a/src/network/ssl/qsslkey.cpp b/src/network/ssl/qsslkey.cpp index f7a4d466ce..d8a014cb26 100644 --- a/src/network/ssl/qsslkey.cpp +++ b/src/network/ssl/qsslkey.cpp @@ -48,6 +48,7 @@ \reentrant \ingroup network \ingroup ssl + \ingroup shared \inmodule QtNetwork QSslKey provides a simple API for managing keys. -- cgit v1.2.3