| 929 | |
| 930 | |
| 931 | void MainWindow::openRecentlyOpenedProject( QAction * _action ) |
| 932 | { |
| 933 | if ( mayChangeProject(true) ) |
| 934 | { |
| 935 | const QString f = _action->text().replace("&&", "&"); |
| 936 | setCursor( Qt::WaitCursor ); |
| 937 | Engine::getSong()->loadProject( f ); |
| 938 | setCursor( Qt::ArrowCursor ); |
| 939 | } |
| 940 | } |
| 941 | |
| 942 | |
| 943 |
nothing calls this directly
no test coverage detected