| 1996 | } |
| 1997 | |
| 1998 | void MainWindow::appendRecentMacro(const QString& filename) |
| 1999 | { |
| 2000 | auto recent = this->findChild<RecentMacrosAction*>(QStringLiteral("recentMacros")); |
| 2001 | if (recent) { |
| 2002 | recent->appendFile(filename); |
| 2003 | } |
| 2004 | } |
| 2005 | |
| 2006 | void MainWindow::updateActions(bool delay) |
| 2007 | { |
no test coverage detected