diff options
Diffstat (limited to 'tests/manual/dynamicscene-cpp')
-rw-r--r-- | tests/manual/dynamicscene-cpp/boxentity.cpp | 4 |
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); |