From 214f517b90e6520793e530fcebe1be70a3b1fbb0 Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Wed, 3 Oct 2018 19:18:54 +0100 Subject: [PATCH] Fix incompatibility with Qt v5.5. --- LotWUsers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LotWUsers.cpp b/LotWUsers.cpp index 11b830b55..a49d3d1a0 100644 --- a/LotWUsers.cpp +++ b/LotWUsers.cpp @@ -205,7 +205,7 @@ public: } else { - throw std::runtime_error {QObject::tr ("Failed to open LotW users CSV file: '%1'").arg (f.fileName ()).toLocal8Bit ()}; + throw std::runtime_error {QObject::tr ("Failed to open LotW users CSV file: '%1'").arg (f.fileName ()).toStdString ()}; } return result; }