diff options
author | Darrell Anderson <[email protected]> | 2012-08-03 08:49:35 -0500 |
---|---|---|
committer | Darrell Anderson <[email protected]> | 2012-08-03 08:49:35 -0500 |
commit | 92b8aca467ad650f9b77a5b6a0f56c27ecbfe80a (patch) | |
tree | 3de07468347367bdef8e6c0d765bdb209585a189 /tools/qvfb/qanimationwriter.cpp | |
parent | da067173fd2ab6bca5943294a439c4992323227a (diff) | |
parent | ebcb1d80bf517aceb69778e1e9f67e5f4da8c484 (diff) | |
download | qt3-92b8aca467ad650f9b77a5b6a0f56c27ecbfe80a.tar.gz qt3-92b8aca467ad650f9b77a5b6a0f56c27ecbfe80a.zip |
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/qt3
Diffstat (limited to 'tools/qvfb/qanimationwriter.cpp')
-rw-r--r-- | tools/qvfb/qanimationwriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/qvfb/qanimationwriter.cpp b/tools/qvfb/qanimationwriter.cpp index 35d6131..3555fc6 100644 --- a/tools/qvfb/qanimationwriter.cpp +++ b/tools/qvfb/qanimationwriter.cpp @@ -392,7 +392,7 @@ void QAnimationWriter::appendFrame(const QImage& frm, const QPoint& offset) qDebug("%d,%d %d,%d",minx,miny,offset.x(),offset.y()); d->composeImage(diff,QPoint(minx,miny)+offset); } - if ( prev.isNull() || prev.size() == frame.size() && offset == QPoint(0,0) ) { + if ( prev.isNull() || ( prev.size() == frame.size() && offset == QPoint(0,0) ) ) { prev = frame; } else { bitBlt(&prev,offset.x(),offset.y(),&frame,0,0,frame.width(),frame.height()); |