summaryrefslogtreecommitdiffstats
path: root/src/render/renderstates/qscissortest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/render/renderstates/qscissortest.cpp')
-rw-r--r--src/render/renderstates/qscissortest.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/render/renderstates/qscissortest.cpp b/src/render/renderstates/qscissortest.cpp
index ea24838bc..e56ac83e6 100644
--- a/src/render/renderstates/qscissortest.cpp
+++ b/src/render/renderstates/qscissortest.cpp
@@ -51,16 +51,6 @@ QScissorTest::QScissorTest(QNode *parent)
{
}
-void QScissorTest::copy(const QNode *ref)
-{
- QRenderState::copy(ref);
- const QScissorTest *refState = static_cast<const QScissorTest*>(ref);
- d_func()->m_left = refState->d_func()->m_left;
- d_func()->m_bottom = refState->d_func()->m_bottom;
- d_func()->m_width = refState->d_func()->m_width;
- d_func()->m_height = refState->d_func()->m_height;
-}
-
int QScissorTest::left() const
{
Q_D(const QScissorTest);