| 606 | } // saveProjectInternal |
| 607 | |
| 608 | void |
| 609 | Project::autoSave() |
| 610 | { |
| 611 | ///don't autosave in background mode... |
| 612 | if ( getApp()->isBackground() ) { |
| 613 | return; |
| 614 | } |
| 615 | |
| 616 | QString path = QString::fromUtf8( _imp->getProjectPath().c_str() ); |
| 617 | QString name = QString::fromUtf8( _imp->getProjectFilename().c_str() ); |
| 618 | saveProject_imp(path, name, true, true, 0); |
| 619 | } |
| 620 | |
| 621 | void |
| 622 | Project::triggerAutoSave() |
nothing calls this directly
no test coverage detected