diff options
| author | Tannin <devnull@localhost> | 2014-12-09 18:34:09 +0100 |
|---|---|---|
| committer | Tannin <devnull@localhost> | 2014-12-09 18:34:09 +0100 |
| commit | 479fdb3dcd47fb8d951dc9aa9f558878d880ca04 (patch) | |
| tree | 1b6b5a7e4dccdaee80cbdaae643d552f02a8e44f /src/mainwindow.cpp | |
| parent | acf35da699f2bb01900552323cc1983b7f065422 (diff) | |
removed use of ModInfo::internalName
Diffstat (limited to 'src/mainwindow.cpp')
| -rw-r--r-- | src/mainwindow.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 809da989..b4f709d3 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -2431,7 +2431,8 @@ IModInterface *MainWindow::getMod(const QString &name) IModInterface *MainWindow::createMod(GuessedValue<QString> &name) { - if (!m_InstallationManager.testOverwrite(name)) { + bool merge = false; + if (!m_InstallationManager.testOverwrite(name, &merge)) { return NULL; } |
