diff options
author | Olivier Goffart <ogoffart@trolltech.com> | 2009-11-09 11:47:40 (GMT) |
---|---|---|
committer | Olivier Goffart <ogoffart@trolltech.com> | 2009-11-09 11:47:40 (GMT) |
commit | e07878a9bcccbf063650272329c0aca14290b8e3 (patch) | |
tree | 22968f5ca19396062905a1ac8ae374e20e3947d9 /src/gui/graphicsview | |
parent | e9a06e6f9765c9632103c86fe190e8154ce4a9f8 (diff) | |
download | Qt-e07878a9bcccbf063650272329c0aca14290b8e3.zip Qt-e07878a9bcccbf063650272329c0aca14290b8e3.tar.gz Qt-e07878a9bcccbf063650272329c0aca14290b8e3.tar.bz2 |
Compile in 64bit with debug
Diffstat (limited to 'src/gui/graphicsview')
-rw-r--r-- | src/gui/graphicsview/qgraphicsanchorlayout_p.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/graphicsview/qgraphicsanchorlayout_p.h b/src/gui/graphicsview/qgraphicsanchorlayout_p.h index 3ef37f9..5f50c85 100644 --- a/src/gui/graphicsview/qgraphicsanchorlayout_p.h +++ b/src/gui/graphicsview/qgraphicsanchorlayout_p.h @@ -267,7 +267,7 @@ inline QString AnchorVertex::toString() const const AnchorVertexPair *vp = static_cast<const AnchorVertexPair *>(this); return QString::fromAscii("(%1, %2)").arg(vp->m_first->toString()).arg(vp->m_second->toString()); } else if (!m_item) { - return QString::fromAscii("NULL_%1").arg(int(this)); + return QString::fromAscii("NULL_%1").arg(quintptr(this)); } QString edge; switch (m_edge) { |