| 149 | }; |
| 150 | |
| 151 | void MIFrameStackModel::fetchFrames(int threadNumber, int from, int to) |
| 152 | { |
| 153 | //to+1 so we know if there are more |
| 154 | QString arg = QStringLiteral("%1 %2").arg(from).arg(to+1); |
| 155 | auto c = session()->createCommand(StackListFrames, arg); |
| 156 | c->setHandler(new FrameListHandler(this, threadNumber, to)); |
| 157 | c->setThread(threadNumber); |
| 158 | session()->addCommand(std::move(c)); |
| 159 | } |
| 160 | |
| 161 | #include "moc_miframestackmodel.cpp" |
nothing calls this directly
no test coverage detected