From 7f50a504c7c4b266f98d0a0f449e3025e7a263ea Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Thu, 22 Nov 2018 21:06:03 +0900 Subject: Fix QString initialisation from QStringBuilder You can't assign a QStringBuilder to auto. --- lib/util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/util.cpp b/lib/util.cpp index 5266af1e..af06013c 100644 --- a/lib/util.cpp +++ b/lib/util.cpp @@ -67,7 +67,7 @@ QString QMatrixClient::prettyPrint(const QString& plainText) QString QMatrixClient::cacheLocation(const QString& dirName) { - const auto cachePath = + const QString cachePath = QStandardPaths::writableLocation(QStandardPaths::CacheLocation) % '/' % dirName % '/'; QDir dir; -- cgit v1.2.3