summaryrefslogtreecommitdiffstats
path: root/src/dbus/qdbusconnectioninterface.cpp
diff options
context:
space:
mode:
authorMartin Smith <martin.smith@qt.io>2018-01-12 11:33:12 +0100
committerMartin Smith <martin.smith@qt.io>2018-01-15 15:00:58 +0000
commitbcc1eaab705834bfb6bed9b19f1b44bae10fef76 (patch)
tree4f21483986814a4139b2b360749f48f4855245ae /src/dbus/qdbusconnectioninterface.cpp
parent85aa0fd041fbaa258f089d86f227311e53f6206a (diff)
doc: Fix remaining qdoc warnings in QtDBus
Added many template clauses to \fn commands. Also added or modified some uses of Q_CLANG_QDOC in some dbus include files to work around some seriousl ugly template clauses that could not be added to \fn commands. Also modified a few parameter names in the documentation. The first attempt at making this change caused syncqt to fail to create QtDBus/QDBusPendingReply. This second attempt works. Change-Id: I96c1fb9bcb1d9debf9409f6baf8c42e18fb9e75d Reviewed-by: Martin Smith <martin.smith@qt.io>
Diffstat (limited to 'src/dbus/qdbusconnectioninterface.cpp')
-rw-r--r--src/dbus/qdbusconnectioninterface.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dbus/qdbusconnectioninterface.cpp b/src/dbus/qdbusconnectioninterface.cpp
index 2b86eded7f..ebb3803489 100644
--- a/src/dbus/qdbusconnectioninterface.cpp
+++ b/src/dbus/qdbusconnectioninterface.cpp
@@ -378,21 +378,21 @@ void QDBusConnectionInterface::disconnectNotify(const QMetaMethod &signal)
// signals
/*!
- \fn QDBusConnectionInterface::serviceRegistered(const QString &serviceName)
+ \fn QDBusConnectionInterface::serviceRegistered(const QString &service)
This signal is emitted by the D-Bus server when the bus service
name (unique connection name or well-known service name) given by
- \a serviceName is acquired by this application.
+ \a service is acquired by this application.
Acquisition happens after this application has requested a name using
registerService().
*/
/*!
- \fn QDBusConnectionInterface::serviceUnregistered(const QString &serviceName)
+ \fn QDBusConnectionInterface::serviceUnregistered(const QString &service)
This signal is emitted by the D-Bus server when this application
- loses ownership of the bus service name given by \a serviceName.
+ loses ownership of the bus service name given by \a service.
*/
/*!