summaryrefslogtreecommitdiffstats
path: root/src/scripttools/debugging/qscriptdebuggerstackwidgetinterface.cpp
diff options
context:
space:
mode:
authorYoann Lopes <yoann.lopes@nokia.com>2009-12-04 14:57:18 (GMT)
committerYoann Lopes <yoann.lopes@nokia.com>2009-12-04 14:57:18 (GMT)
commit39392326c8c843a6f46b864c6595a5241a47af10 (patch)
treee89b63d383fc130702c47323d9cd55c86348c880 /src/scripttools/debugging/qscriptdebuggerstackwidgetinterface.cpp
parent9a76f02a3147c2da969cb1b942ee7228b13c84cc (diff)
downloadQt-39392326c8c843a6f46b864c6595a5241a47af10.zip
Qt-39392326c8c843a6f46b864c6595a5241a47af10.tar.gz
Qt-39392326c8c843a6f46b864c6595a5241a47af10.tar.bz2
Fixes clipping bug in the embedded dialogs demo.
The problem was that when using DeviceCoordinateCache for items in a scene, newly exposed areas were wrongly painted over the Pixmap in the cache, instead of blending into it. Autotest included. Task-number: QTBUG-657 Reviewed-by: Andreas Reviewed-by: bnilsen
Diffstat (limited to 'src/scripttools/debugging/qscriptdebuggerstackwidgetinterface.cpp')
0 files changed, 0 insertions, 0 deletions
bed in the Nokia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** If you have questions regarding the use of this file, please contact ** Nokia at qt-info@nokia.com. ** ** ** ** ** ** ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ //! [0] QScriptValue object; ... QScriptValueIterator it(object); while (it.hasNext()) { it.next(); qDebug() << it.name() << ": " << it.value().toString(); } //! [0] //! [1] QScriptValue obj = ...; // the object to iterate over while (obj.isObject()) { QScriptValueIterator it(obj); while (it.hasNext()) { it.next(); qDebug() << it.name(); } obj = obj.prototype(); } //! [1] //! [2] while (it.hasNext()) { it.next(); if (it.flags() & QScriptValue::SkipInEnumeration) continue; qDebug() << "found enumerated property:" << it.name(); } //! [2]