diff options
| author | Tannin <devnull@localhost> | 2013-05-22 18:16:56 +0200 |
|---|---|---|
| committer | Tannin <devnull@localhost> | 2013-05-22 18:16:56 +0200 |
| commit | f0ba6ce95c1f30524453ce996fa536a888f018da (patch) | |
| tree | ff6fc7ad1de0e4813a0485cc7ab90baf23c51595 /src/main.cpp | |
| parent | 45f6cd21a2c730b9dea322b0dba30120cdc40521 (diff) | |
- added NCC to repository
- deleting files from download manager now moves them to recycle bin instead of deleting permanentyl
- cleanup in installation manager
- ini editor (old) can now be configured to open files in external editor
- bugfix: .net check in ncc installer was broken
- bugfix: mod-overwrite dialog wasn't displayed for complex installers
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index ab740467..7146f4d1 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -84,7 +84,7 @@ void removeOldLogfiles() deleteFiles.append(files.at(i).absoluteFilePath()); } - if (!shellDelete(deleteFiles, NULL)) { + if (!shellDelete(deleteFiles)) { qWarning("failed to remove log files: %s", qPrintable(windowsErrorString(::GetLastError()))); } } @@ -102,7 +102,7 @@ bool bootstrap() QString moDirectory = QDir::fromNativeSeparators(ToQString(gameInfo.getOrganizerDirectory())); QString backupDirectory = moDirectory.mid(0).append("/update_backup"); if (QDir(backupDirectory).exists()) { - shellDelete(QStringList(backupDirectory), NULL); + shellDelete(QStringList(backupDirectory)); } // cycle logfile |
