summaryrefslogtreecommitdiffstats
path: root/tests/manual/dynamicscene-cpp
diff options
context:
space:
mode:
authorMarc Mutz <[email protected]>2025-06-03 23:32:40 +0200
committerMarc Mutz <[email protected]>2025-06-04 16:07:11 +0200
commit9d5aea4a3ea48adbce7494f950432330efbfc121 (patch)
tree577524def3b3a6e6277f53c0bac31f4d991d2687 /tests/manual/dynamicscene-cpp
parent6164eed2a54fa58cb2fc5e5408e481a512f687c1 (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 two long connect() lines Pick-to: 6.10 6.9 6.8 6.5 Change-Id: If3dfd251cacdb1e47b8a98a1fc9462d16fec3e11 Reviewed-by: Mike Krus <[email protected]>
Diffstat (limited to 'tests/manual/dynamicscene-cpp')
-rw-r--r--tests/manual/dynamicscene-cpp/boxentity.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/manual/dynamicscene-cpp/boxentity.cpp b/tests/manual/dynamicscene-cpp/boxentity.cpp
index 43d5c5a40..52d722fd2 100644
--- a/tests/manual/dynamicscene-cpp/boxentity.cpp
+++ b/tests/manual/dynamicscene-cpp/boxentity.cpp
@@ -14,8 +14,8 @@ BoxEntity::BoxEntity(QNode *parent)
, m_angle(0.0f)
, m_radius(1.0f)
{
- connect(m_material, SIGNAL(diffuseChanged(const QColor &)),
- this, SIGNAL(diffuseColorChanged(const QColor &)));
+ connect(m_material, SIGNAL(diffuseChanged(QColor)),
+ this, SIGNAL(diffuseColorChanged(QColor)));
m_material->setAmbient(Qt::gray);
m_material->setSpecular(Qt::white);
m_material->setShininess(150.0f);