MCPcopy Create free account
hub / github.com/MITK/MITK / PrintChildren

Method PrintChildren

Plugins/org.blueberry.core.runtime/src/berryCoreException.cpp:57–71  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

55}
56
57QDebug CoreException::PrintChildren(IStatus *status, QDebug dbg) const
58{
59 QList<IStatus::Pointer> children = status->GetChildren();
60 for (int i = 0; i < children.size(); ++i)
61 {
62 dbg << "Contains: " << qPrintable(children[i]->GetMessage()) << '\n';
63 const ctkException* exc = children[i]->GetException();
64 if (exc != nullptr)
65 {
66 dbg << exc->printStackTrace();
67 }
68 PrintChildren(children[i].GetPointer(), dbg);
69 }
70 return dbg;
71}
72
73}

Callers

nothing calls this directly

Calls 6

GetMessageMethod · 0.80
GetExceptionMethod · 0.80
printStackTraceMethod · 0.80
GetPointerMethod · 0.80
GetChildrenMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected