| 704 | } // saveProjectInternal |
| 705 | |
| 706 | void |
| 707 | Project::autoSave() |
| 708 | { |
| 709 | ///don't autosave in background mode... |
| 710 | if ( getApp()->isBackground() ) { |
| 711 | return; |
| 712 | } |
| 713 | |
| 714 | QString path = QString::fromUtf8( _imp->getProjectPath().c_str() ); |
| 715 | QString name = QString::fromUtf8( _imp->getProjectFilename().c_str() ); |
| 716 | saveProject_imp(path, name, true, true, 0); |
| 717 | } |
| 718 | |
| 719 | void |
| 720 | Project::triggerAutoSave() |
nothing calls this directly
no test coverage detected