NOISSUE Various changes from multiauth that are unrelated to it

This commit is contained in:
Jan Dalheimer
2015-05-28 19:38:29 +02:00
committed by Petr Mrázek
parent 161dc66c2c
commit 3a8b238052
65 changed files with 2661 additions and 333 deletions

View File

@ -24,6 +24,7 @@
#include "minecraft/OneSixLibrary.h"
#include "minecraft/OneSixInstance.h"
#include "liteloader/LiteLoaderVersionList.h"
#include "Exception.h"
LiteLoaderInstaller::LiteLoaderInstaller() : BaseInstaller()
{
@ -118,7 +119,7 @@ protected:
m_instance->reloadProfile();
emitSucceeded();
}
catch (MMCError &e)
catch (Exception &e)
{
emitFailed(e.cause());
}

View File

@ -16,7 +16,7 @@
#include "LiteLoaderVersionList.h"
#include "Env.h"
#include "net/URLConstants.h"
#include "MMCError.h"
#include "Exception.h"
#include <QtXml>
@ -254,7 +254,7 @@ void LLListLoadTask::listDownloaded()
}
version->libraries.append(lib);
}
catch (MMCError &e)
catch (Exception &e)
{
qCritical() << "Couldn't read JSON object:";
continue;