Add expanding of symbols.

This commit is contained in:
Friedemann Kleint
2009-03-27 17:19:39 +01:00
parent 1f869cb5c9
commit b3f620e514
5 changed files with 391 additions and 140 deletions

View File

@@ -127,7 +127,9 @@ CdbSymbolGroupContext *CdbStackTraceContext::symbolGroupContextAt(int index, QSt
IDebugSymbolGroup2 *sg = createSymbolGroup(index, errorMessage);
if (!sg)
return 0;
CdbSymbolGroupContext *sc = new CdbSymbolGroupContext(QLatin1String("local"), sg);
CdbSymbolGroupContext *sc = CdbSymbolGroupContext::create(QLatin1String("local"), sg, errorMessage);
if (!sc)
return 0; \
m_symbolContexts[index] = sc;
return sc;
}