summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 2ca15b00..3d509379 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -48,7 +48,6 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
#include "categories.h"
#include "categoriesdialog.h"
#include "genericicondelegate.h"
-#include "modinfodialog.h"
#include "overwriteinfodialog.h"
#include "downloadlist.h"
#include "downloadlistwidget.h"
@@ -2377,16 +2376,6 @@ void MainWindow::windowTutorialFinished(const QString &windowName)
m_OrganizerCore.settings().interface().setTutorialCompleted(windowName);
}
-void MainWindow::overwriteClosed(int)
-{
- OverwriteInfoDialog *dialog = this->findChild<OverwriteInfoDialog*>("__overwriteDialog");
- if (dialog != nullptr) {
- m_OrganizerCore.modList()->modInfoChanged(dialog->modInfo());
- dialog->deleteLater();
- }
- m_OrganizerCore.refreshDirectoryStructure();
-}
-
void MainWindow::displayModInformation(ModInfo::Ptr modInfo, unsigned int modIndex, ModInfoTabIDs tabID)
{
ui->modList->actions().displayModInformation(modInfo, modIndex, tabID);
@@ -2402,24 +2391,6 @@ void MainWindow::setWindowEnabled(bool enabled)
setEnabled(enabled);
}
-ModInfo::Ptr MainWindow::nextModInList(int modIndex)
-{
- modIndex = ui->modList->nextMod(modIndex);
- if (modIndex == -1) {
- return {};
- }
- return ModInfo::getByIndex(modIndex);
-}
-
-ModInfo::Ptr MainWindow::previousModInList(int modIndex)
-{
- modIndex = ui->modList->prevMod(modIndex);
- if (modIndex == -1) {
- return {};
- }
- return ModInfo::getByIndex(modIndex);
-}
-
void MainWindow::openPluginOriginExplorer_clicked()
{
QItemSelectionModel *selection = ui->espList->selectionModel();