| 1987 | #endif |
| 1988 | |
| 1989 | void MainWindow::appendRecentFile(const QString& filename) |
| 1990 | { |
| 1991 | auto recent = this->findChild<RecentFilesAction*>(QStringLiteral("recentFiles")); |
| 1992 | if (recent) { |
| 1993 | recent->appendFile(filename); |
| 1994 | Q_EMIT recentFileAdded(filename); |
| 1995 | } |
| 1996 | } |
| 1997 | |
| 1998 | void MainWindow::appendRecentMacro(const QString& filename) |
| 1999 | { |
no test coverage detected