From ff9d32396e6b5a026dadb93d46ab54b6574873e0 Mon Sep 17 00:00:00 2001 From: hjk Date: Wed, 2 Mar 2011 14:14:46 +0100 Subject: [PATCH] debugger: fix thinko --- src/plugins/debugger/breakhandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/debugger/breakhandler.cpp b/src/plugins/debugger/breakhandler.cpp index 994f86f925b..c2f74192a95 100644 --- a/src/plugins/debugger/breakhandler.cpp +++ b/src/plugins/debugger/breakhandler.cpp @@ -1254,7 +1254,7 @@ QString BreakHandler::BreakpointItem::toToolTip() const str << "" << tr("Multiple Addresses:") << ""; foreach (quint64 address, response.addresses) { - formatAddress(str, data.address); + formatAddress(str, address); str << " "; } str << "";