| 71 | } |
| 72 | |
| 73 | Param RecentFilesMenu::getAsParam() const |
| 74 | { |
| 75 | Param p; |
| 76 | int i{ 0 }; |
| 77 | for (const auto& f : recent_files_) |
| 78 | { |
| 79 | p.setValue(String(i), f.toStdString()); |
| 80 | ++i; |
| 81 | } |
| 82 | return p; |
| 83 | } |
| 84 | |
| 85 | QMenu* RecentFilesMenu::getMenu() |
| 86 | { |
no test coverage detected