~ubuntu-branches/ubuntu/utopic/psi/utopic

« back to all changes in this revision

Viewing changes to src/whiteboarding/wbscene.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2009-09-25 17:49:51 UTC
  • mfrom: (6.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090925174951-lvm7kdap82o8xhn3
Tags: 0.13-1
* Updated to upstream version 0.13
* Set Standards-Version to 3.8.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
void WbScene::regenerateTransformations() {
33
33
        foreach(QPointer<WbItem> item, pendingTranformations_) {
34
34
                if(item) {
35
 
            // qDebug(QString("Regenerating %1 transform.").arg((unsigned int) &(*item)).toAscii());
 
35
            // qDebug() << QString("Regenerating %1 transform.").arg((unsigned int) &(*item)).toAscii();
36
36
                        item->regenerateTransform();
37
37
                }
38
38
        }
51
51
        box = box.united(item->sceneBoundingRect());
52
52
    }
53
53
 
54
 
    // qDebug(QString("Selection center: %1 %2").arg(box.center().x()).arg(box.center().y()).toAscii());
 
54
    // qDebug() << QString("Selection center: %1 %2").arg(box.center().x()).arg(box.center().y()).toAscii();
55
55
 
56
56
    return box.center();
57
57
}