From 9fbb30ac76e99934ccfd7a3d370de7476af23154 Mon Sep 17 00:00:00 2001 From: Andrey Astafyev Date: Sat, 5 Oct 2019 13:43:25 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=BE=20=D1=83=D1=81=D0=BB=D0=BE=D0=B2=D0=B8=D1=8F?= =?UTF-8?q?=20=D0=B4=D0=BB=D1=8F=20=D0=BF=D0=BE=D0=B8=D1=81=D0=BA=D0=B0=20?= =?UTF-8?q?=D0=B2=D1=80=D0=B5=D0=BC=D0=B5=D0=BD=D0=BD=D0=BE=D0=B3=D0=BE=20?= =?UTF-8?q?=D0=BA=D0=B0=D1=82=D0=B0=D0=BB=D0=BE=D0=B3=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/filesystem/paths.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/filesystem/paths.cpp b/src/filesystem/paths.cpp index 5fca0c3..5a3b9c8 100644 --- a/src/filesystem/paths.cpp +++ b/src/filesystem/paths.cpp @@ -70,7 +70,7 @@ Paths::Paths() : m_executableFilePath( m_binaryDirectory.absolutePath() + "/" + m_executableFileName ), m_configFilePath( m_binaryDirectory.absolutePath() + "/" + m_configFileName ) { - if ( m_tempDirectory.isEmpty() || ( m_tempDirectory.path() == "." ) ) + if ( m_tempDirectory.absolutePath().isEmpty() || ( m_tempDirectory.path() == "." ) ) { m_tempDirectory = _PATH_TMP; }