summaryrefslogtreecommitdiffstats
path: root/application/UpdateController.cpp
diff options
context:
space:
mode:
authorCharles Milette <me@charlesmilette.net>2018-05-19 19:18:26 -0400
committerCharles Milette <me@charlesmilette.net>2018-05-19 19:18:26 -0400
commit72c0002b45215466e06cd901fe95d9493d659ab2 (patch)
tree03a56f2da0f1ed34a219941060ec2100aedf1ac6 /application/UpdateController.cpp
parentb9fd381eee2f7c87e7645046b26dd552dc3cae5c (diff)
downloadMultiMC-72c0002b45215466e06cd901fe95d9493d659ab2.tar
MultiMC-72c0002b45215466e06cd901fe95d9493d659ab2.tar.gz
MultiMC-72c0002b45215466e06cd901fe95d9493d659ab2.tar.lz
MultiMC-72c0002b45215466e06cd901fe95d9493d659ab2.tar.xz
MultiMC-72c0002b45215466e06cd901fe95d9493d659ab2.zip
Catch C++ exceptions by const reference
Fixes #2277
Diffstat (limited to 'application/UpdateController.cpp')
-rw-r--r--application/UpdateController.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/application/UpdateController.cpp b/application/UpdateController.cpp
index 8df5b3fc..733e365f 100644
--- a/application/UpdateController.cpp
+++ b/application/UpdateController.cpp
@@ -331,7 +331,7 @@ void UpdateController::installUpdates()
break;
}
}
- catch(Exception e)
+ catch (const Exception &e)
{
qWarning() << "Couldn't read the" << liveCheckFile << "file!";
startFailed = true;