summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Lemire <paul.lemire@kdab.com>2015-07-20 15:25:58 +0200
committerPaul Lemire <paul.lemire@kdab.com>2015-07-25 16:20:05 +0000
commit890ab52165bd1cf792f8f5e793a09f9404d8c231 (patch)
treeee03a5f2527c5f5b2c07b1595473151813732486 /src
parent5b3e626d61e12db6dbe1bab0c29b9cde2c64cf8f (diff)
QShaderProgram: fix a property was notified twice to the arbiter
Change-Id: Ie57bac3520dc2c0a0fe72f1da9d309e5d7b23cc8 Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
Diffstat (limited to 'src')
-rw-r--r--src/render/frontend/qshaderprogram.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/render/frontend/qshaderprogram.cpp b/src/render/frontend/qshaderprogram.cpp
index 5787825b8..09e3d7f4e 100644
--- a/src/render/frontend/qshaderprogram.cpp
+++ b/src/render/frontend/qshaderprogram.cpp
@@ -107,8 +107,6 @@ void QShaderProgram::setTessellationControlShaderCode(const QByteArray &tessella
Q_D(QShaderProgram);
if (tessellationControlShaderCode != d->m_tessControlShaderCode) {
d->m_tessControlShaderCode = tessellationControlShaderCode;
- d->notifyPropertyChange(QByteArrayLiteral("tessellationControlSourceCode"),
- tessellationControlShaderCode);
emit tessellationControlShaderCodeChanged();
}
}