From 49e1dd23b699b499d9b715ef74cb7ca5b0189584 Mon Sep 17 00:00:00 2001 From: Tannin Date: Sat, 31 Aug 2013 17:11:17 +0200 Subject: - mod list can now be sorted by install time - the sorting of download archives wasn't actually by index instead of file time - bugfix: some of the plugins crashed if they failed to create a mod --- src/mainwindow.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/mainwindow.cpp') diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 8d5429b4..93efb137 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -104,6 +104,7 @@ along with Mod Organizer. If not, see . #include "modeltest.h" #endif // TEST_MODELS +#pragma warning( disable : 4428 ) using namespace MOBase; using namespace MOShared; @@ -3017,6 +3018,9 @@ void MainWindow::createModFromOverwrite() } IModInterface *newMod = createMod(name); + if (newMod == NULL) { + return; + } ModInfo::Ptr overwriteInfo = ModInfo::getByIndex(m_ContextRow); -- cgit v1.3.1