From ceb4eb29b7faefdd3ad8a2e5771aeee35e31177e Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Thu, 28 Feb 2019 19:59:40 +0100 Subject: compat: this isn't a const reference --- compat/base-path.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'compat') diff --git a/compat/base-path.cpp b/compat/base-path.cpp index b544a3d1..2a26dcff 100644 --- a/compat/base-path.cpp +++ b/compat/base-path.cpp @@ -7,6 +7,6 @@ const QString& application_base_path() { assert(qApp && "logic error"); - static QString const& const_path = QCoreApplication::applicationDirPath(); - return const_path; + static QString path = QCoreApplication::applicationDirPath(); + return path; } -- cgit v1.2.3