| 1823 | } |
| 1824 | |
| 1825 | void OrganizerCore::syncOverwrite() |
| 1826 | { |
| 1827 | ModInfo::Ptr modInfo = ModInfo::getOverwrite(); |
| 1828 | SyncOverwriteDialog syncDialog(modInfo->absolutePath(), m_DirectoryStructure, |
| 1829 | qApp->activeWindow()); |
| 1830 | if (syncDialog.exec() == QDialog::Accepted) { |
| 1831 | syncDialog.apply(QDir::fromNativeSeparators(m_Settings.paths().mods())); |
| 1832 | modInfo->diskContentModified(); |
| 1833 | refreshDirectoryStructure(); |
| 1834 | } |
| 1835 | } |
| 1836 | |
| 1837 | QString OrganizerCore::oldMO1HookDll() const |
| 1838 | { |
no test coverage detected