From 0e6b4899e01fe6054b81845ae458b3465e51b5af Mon Sep 17 00:00:00 2001 From: PB Date: Wed, 2 May 2018 17:50:02 +0200 Subject: [PATCH] Add space around expressions in if () statements --- src/common/debugrpt.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/debugrpt.cpp b/src/common/debugrpt.cpp index 7102776f28..7de8af56dc 100644 --- a/src/common/debugrpt.cpp +++ b/src/common/debugrpt.cpp @@ -630,9 +630,9 @@ wxFileName wxDebugReportCompress::GetSaveLocation() const // Use the default directory as a basis for the save location, e.g. // %temp%/someName becomes %temp%/someName.zip. wxFileName fn(GetDirectory()); - if (!m_zipDir.empty()) + if ( !m_zipDir.empty() ) fn.SetPath(m_zipDir); - if (!m_zipName.empty()) + if ( !m_zipName.empty() ) fn.SetName(m_zipName); fn.SetExt("zip"); return fn;