diff options
-rw-r--r-- | compat/base-path.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |