cdbext: Remove dumping of QImage pointer address.

Change-Id: I61170c9be1cc3cd49e518dd124d020273a87b610
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
This commit is contained in:
David Schulz
2013-04-09 04:58:13 -07:00
parent dd731a8998
commit fb6969ae5b

View File

@@ -2118,7 +2118,7 @@ static bool dumpQImage(const SymbolGroupValue &v, std::wostream &str, MemoryHand
}
str << header.width << L'x' << header.height << L", depth: " << depth
<< L", format: " << header.format << L", "
<< nbytes << L" bytes @0x" << std::hex << data << std::dec;
<< nbytes << L" bytes";
delete [] qImageData;
// Create Creator Image data for display if reasonable size
if (memoryHandle && data && nbytes > 0 && nbytes < 205824) {