summaryrefslogtreecommitdiffstats
path: root/tests/manual/texture-sharing/cpp-client/main.cpp
diff options
context:
space:
mode:
authorMarc Mutz <[email protected]>2025-06-03 23:24:35 +0200
committerMarc Mutz <[email protected]>2025-06-04 14:59:25 +0200
commitc823eccce97cd2eefd927aff8ef4c6838eb11f84 (patch)
tree3cb5983d5e881962b9b2bdca10fe573eadde0059 /tests/manual/texture-sharing/cpp-client/main.cpp
parent081436188784d728f5b46b6cf2259429069c2688 (diff)
Normalize signal/slot signatures 2025HEADdev
This is the result of running util/normalize on the code base. The following manual edits were needed: - folded a long connect() line in texture-sharing manual test Pick-to: 6.10 6.9 6.8 6.5 Change-Id: Iaf425d057c1b59bacd09847469a4409d73739a09 Reviewed-by: Liang Qi <[email protected]>
Diffstat (limited to 'tests/manual/texture-sharing/cpp-client/main.cpp')
-rw-r--r--tests/manual/texture-sharing/cpp-client/main.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/manual/texture-sharing/cpp-client/main.cpp b/tests/manual/texture-sharing/cpp-client/main.cpp
index d389ffbd5..9869283b2 100644
--- a/tests/manual/texture-sharing/cpp-client/main.cpp
+++ b/tests/manual/texture-sharing/cpp-client/main.cpp
@@ -29,7 +29,8 @@ public:
: m_extension(nullptr)
{
m_extension = new TextureSharingExtension;
- connect(m_extension, SIGNAL(bufferReceived(QtWaylandClient::QWaylandServerBuffer*, const QString&)), this, SLOT(receiveBuffer(QtWaylandClient::QWaylandServerBuffer*, const QString&)));
+ connect(m_extension, SIGNAL(bufferReceived(QtWaylandClient::QWaylandServerBuffer*,QString)),
+ this, SLOT(receiveBuffer(QtWaylandClient::QWaylandServerBuffer*,QString)));
connect(m_extension, &TextureSharingExtension::activeChanged, this, &TestWindow::handleExtensionActive);
}