From 0471998e13aada9a76e92b13ab3885c2d1c2fb84 Mon Sep 17 00:00:00 2001 From: Jan Holthuis Date: Tue, 15 Dec 2020 01:05:33 +0100 Subject: Add missing braces around single-line statements --- src/effects/effectchainslot.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/effects/effectchainslot.cpp') diff --git a/src/effects/effectchainslot.cpp b/src/effects/effectchainslot.cpp index e0b82a1d31..0f66673029 100644 --- a/src/effects/effectchainslot.cpp +++ b/src/effects/effectchainslot.cpp @@ -138,8 +138,9 @@ EffectChainSlot::~EffectChainSlot() { } QString EffectChainSlot::id() const { - if (m_pEffectChain) + if (m_pEffectChain) { return m_pEffectChain->id(); + } return ""; } -- cgit v1.2.3