| 460 | } |
| 461 | |
| 462 | void SPythonLog::ExtendTextBoxMenu(FMenuBuilder& Builder) |
| 463 | { |
| 464 | FUIAction ClearPythonLogAction( |
| 465 | FExecuteAction::CreateRaw(this, &SPythonLog::OnClearLog), |
| 466 | FCanExecuteAction::CreateSP(this, &SPythonLog::CanClearLog) |
| 467 | ); |
| 468 | |
| 469 | Builder.AddMenuEntry( |
| 470 | NSLOCTEXT("PythonConsole", "ClearLogLabel", "Clear Log"), |
| 471 | NSLOCTEXT("PythonConsole", "ClearLogTooltip", "Clears all log messages"), |
| 472 | FSlateIcon(), |
| 473 | ClearPythonLogAction |
| 474 | ); |
| 475 | } |
| 476 | |
| 477 | void SPythonLog::OnClearLog() |
| 478 | { |
nothing calls this directly
no outgoing calls
no test coverage detected