| 32 | } |
| 33 | |
| 34 | QString StackFrameData::toString() const |
| 35 | { |
| 36 | QString res; |
| 37 | QTextStream str(&res); |
| 38 | str << tr("Address:") << ' '; |
| 39 | str.setIntegerBase(16); |
| 40 | str << address; |
| 41 | str.setIntegerBase(10); |
| 42 | str << ' ' |
| 43 | << tr("Function:") << ' ' << function << ' ' |
| 44 | << tr("File:") << ' ' << file << ' ' |
| 45 | << tr("Line:") << ' ' << line << ' ' |
| 46 | << tr("From:") << ' ' << module << ' ' |
| 47 | << tr("To:") << ' ' << receiver; |
| 48 | return res; |
| 49 | } |
| 50 | |
| 51 | QString StackFrameData::toToolTip() const |
| 52 | { |
no outgoing calls
no test coverage detected