Add space around expressions in if () statements

This commit is contained in:
PB 2018-05-02 17:50:02 +02:00
parent 8aae3c0356
commit 0e6b4899e0

View File

@ -630,9 +630,9 @@ wxFileName wxDebugReportCompress::GetSaveLocation() const
// Use the default directory as a basis for the save location, e.g. // Use the default directory as a basis for the save location, e.g.
// %temp%/someName becomes %temp%/someName.zip. // %temp%/someName becomes %temp%/someName.zip.
wxFileName fn(GetDirectory()); wxFileName fn(GetDirectory());
if (!m_zipDir.empty()) if ( !m_zipDir.empty() )
fn.SetPath(m_zipDir); fn.SetPath(m_zipDir);
if (!m_zipName.empty()) if ( !m_zipName.empty() )
fn.SetName(m_zipName); fn.SetName(m_zipName);
fn.SetExt("zip"); fn.SetExt("zip");
return fn; return fn;