From fdc5e91dcf6a2ee1b16a572a2266c77608e80ade Mon Sep 17 00:00:00 2001 From: Lars Schmertmann Date: Thu, 2 Jul 2020 16:26:10 +0200 Subject: Only use one macro per line Also add a ; where it is missing. Task-number: QTBUG-82978 Change-Id: Ic5d2a07363c25ab641d234baca89bc62238458cb Reviewed-by: Friedemann Kleint Reviewed-by: Volker Hilsheimer --- src/platformsupport/linuxaccessibility/atspiadaptor.cpp | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'src/platformsupport') diff --git a/src/platformsupport/linuxaccessibility/atspiadaptor.cpp b/src/platformsupport/linuxaccessibility/atspiadaptor.cpp index dca57372fc..c4ff9a211b 100644 --- a/src/platformsupport/linuxaccessibility/atspiadaptor.cpp +++ b/src/platformsupport/linuxaccessibility/atspiadaptor.cpp @@ -1806,9 +1806,13 @@ bool AtSpiAdaptor::textInterface(QAccessibleInterface *interface, const QString uint coordType = message.arguments().at(4).toUInt(); uint xClipType = message.arguments().at(5).toUInt(); uint yClipType = message.arguments().at(6).toUInt(); - Q_UNUSED(x) Q_UNUSED (y) Q_UNUSED(width) - Q_UNUSED(height) Q_UNUSED(coordType) - Q_UNUSED(xClipType) Q_UNUSED(yClipType) + Q_UNUSED(x); + Q_UNUSED(y); + Q_UNUSED(width); + Q_UNUSED(height); + Q_UNUSED(coordType); + Q_UNUSED(xClipType); + Q_UNUSED(yClipType); qCDebug(lcAccessibilityAtspi) << "Not implemented: QSpiAdaptor::GetBoundedRanges"; sendReply(connection, message, QVariant::fromValue(QSpiTextRangeList())); } else if (function == QLatin1String("GetCharacterAtOffset")) { -- cgit v1.2.3