| 230 | |
| 231 | |
| 232 | void DebugControlsWidget::performStepOver() |
| 233 | { |
| 234 | BNFunctionGraphType graphType = NormalFunctionGraph; |
| 235 | UIContext* context = UIContext::contextForWidget(this); |
| 236 | if (context && context->getCurrentView()) |
| 237 | graphType = context->getCurrentView()->getILViewType(); |
| 238 | |
| 239 | if (graphType == InvalidILViewType) |
| 240 | graphType = NormalFunctionGraph; |
| 241 | |
| 242 | m_controller->StepOver(graphType); |
| 243 | } |
| 244 | |
| 245 | |
| 246 | void DebugControlsWidget::performStepReturn() |