summaryrefslogtreecommitdiffstats
path: root/src/gui/accessible
diff options
context:
space:
mode:
authorMichael Weghorn <[email protected]>2025-06-05 09:39:33 +0200
committerVolker Hilsheimer <[email protected]>2025-06-06 18:04:35 +0000
commit99ad6a51a595430c75323c4d5c2ecbc7fbd8d7f0 (patch)
tree2b1ba1ba7fabd18f9b1a441e4f719c0d7a9736b7 /src/gui/accessible
parent1a870f4bf2efdd0c0dd6f3d7a13edccf8c6701cf (diff)
a11y atspi: Warn on unimplemented Application iface method
As already happens in the implementation for the handling of all other AT-SPI interfaces (called from AtSpiAdaptor::handleMessage), also warn when an unimplemented/unknown method gets called for the Application interface: increase log level to warn and align message with the one used for the other interfaces, so this can be more easily identified. Task-number: QTBUG-137344 Pick-to: 6.10 Change-Id: I33d3811fd34ca0f9f4b1ab9d809f505c12c6517c Reviewed-by: Volker Hilsheimer <[email protected]>
Diffstat (limited to 'src/gui/accessible')
-rw-r--r--src/gui/accessible/linux/atspiadaptor.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/accessible/linux/atspiadaptor.cpp b/src/gui/accessible/linux/atspiadaptor.cpp
index 6978d5c0268..6154af00950 100644
--- a/src/gui/accessible/linux/atspiadaptor.cpp
+++ b/src/gui/accessible/linux/atspiadaptor.cpp
@@ -1534,7 +1534,8 @@ bool AtSpiAdaptor::applicationInterface(QAccessibleInterface *interface, const Q
QDBusMessage reply = message.createReply(QVariant::fromValue(QLocale().name()));
return connection.send(reply);
}
- qCDebug(lcAccessibilityAtspi) << "AtSpiAdaptor::applicationInterface " << message.path() << interface << function;
+ qCWarning(lcAccessibilityAtspi) << "AtSpiAdaptor::applicationInterface does not implement"
+ << function << message.path();
return false;
}