qdoc3: Don't put \relates in class member functions.
This removes two uses of \relates that were unnecessary. Task-number: QTBUG-23599 Change-Id: I3e10375159f6535f56622f9d24e16151938c63c3 Reviewed-by: Martin Smith <martin.smith@nokia.com> Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
This commit is contained in:
parent
106bab644a
commit
e58e1abbd9
@ -122,21 +122,6 @@ void QDBusConnectionManager::setConnection(const QString &name, QDBusConnectionP
|
||||
c->name = name;
|
||||
}
|
||||
|
||||
/*!
|
||||
\fn QDBusConnection &QDBusConnection::sessionBus()
|
||||
|
||||
Returns a QDBusConnection object opened with the session bus. The object
|
||||
reference returned by this function is valid until the application terminates,
|
||||
at which point the connection will be closed and the object deleted.
|
||||
*/
|
||||
/*!
|
||||
\fn QDBusConnection &QDBusConnection::systemBus()
|
||||
|
||||
Returns a QDBusConnection object opened with the system bus. The object reference returned
|
||||
by this function is valid until the QCoreApplication's destructor is run, when the
|
||||
connection will be closed and the object, deleted.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\class QDBusConnection
|
||||
\inmodule QtDBus
|
||||
@ -1123,11 +1108,25 @@ Q_GLOBAL_STATIC_WITH_ARGS(QDBusDefaultConnection, _q_sessionBus,
|
||||
Q_GLOBAL_STATIC_WITH_ARGS(QDBusDefaultConnection, _q_systemBus,
|
||||
(QDBusConnection::SystemBus, _q_systemBusName))
|
||||
|
||||
/*!
|
||||
\fn QDBusConnection QDBusConnection::sessionBus()
|
||||
|
||||
Returns a QDBusConnection object opened with the session bus. The object
|
||||
reference returned by this function is valid until the application terminates,
|
||||
at which point the connection will be closed and the object deleted.
|
||||
*/
|
||||
QDBusConnection QDBusConnection::sessionBus()
|
||||
{
|
||||
return *_q_sessionBus();
|
||||
}
|
||||
|
||||
/*!
|
||||
\fn QDBusConnection QDBusConnection::systemBus()
|
||||
|
||||
Returns a QDBusConnection object opened with the system bus. The object reference returned
|
||||
by this function is valid until the QCoreApplication's destructor is run, when the
|
||||
connection will be closed and the object, deleted.
|
||||
*/
|
||||
QDBusConnection QDBusConnection::systemBus()
|
||||
{
|
||||
return *_q_systemBus();
|
||||
|
Loading…
Reference in New Issue
Block a user