From c13ff9cec9f8b37d1ac6f77eac5aa52aaeb32737 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Tue, 26 Oct 2021 17:19:30 +0100 Subject: [PATCH] Formatting. --- pcbnew/zone.h | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/pcbnew/zone.h b/pcbnew/zone.h index bca1167850..f8760b7383 100644 --- a/pcbnew/zone.h +++ b/pcbnew/zone.h @@ -730,27 +730,26 @@ public: /** * Accessors to parameters used in Rule Area zones: */ - bool GetIsRuleArea() const { return m_isRuleArea; } + bool GetIsRuleArea() const { return m_isRuleArea; } bool GetDoNotAllowCopperPour() const { return m_doNotAllowCopperPour; } - bool GetDoNotAllowVias() const { return m_doNotAllowVias; } - bool GetDoNotAllowTracks() const { return m_doNotAllowTracks; } - bool GetDoNotAllowPads() const { return m_doNotAllowPads; } + bool GetDoNotAllowVias() const { return m_doNotAllowVias; } + bool GetDoNotAllowTracks() const { return m_doNotAllowTracks; } + bool GetDoNotAllowPads() const { return m_doNotAllowPads; } bool GetDoNotAllowFootprints() const { return m_doNotAllowFootprints; } bool IsKeepout() const; bool KeepoutAll() const; - void SetIsRuleArea( bool aEnable ) {m_isRuleArea = aEnable; } + void SetIsRuleArea( bool aEnable ) { m_isRuleArea = aEnable; } void SetDoNotAllowCopperPour( bool aEnable ) { m_doNotAllowCopperPour = aEnable; } - void SetDoNotAllowVias( bool aEnable ) { m_doNotAllowVias = aEnable; } - void SetDoNotAllowTracks( bool aEnable ) { m_doNotAllowTracks = aEnable; } - void SetDoNotAllowPads( bool aEnable ) { m_doNotAllowPads = aEnable; } + void SetDoNotAllowVias( bool aEnable ) { m_doNotAllowVias = aEnable; } + void SetDoNotAllowTracks( bool aEnable ) { m_doNotAllowTracks = aEnable; } + void SetDoNotAllowPads( bool aEnable ) { m_doNotAllowPads = aEnable; } void SetDoNotAllowFootprints( bool aEnable ) { m_doNotAllowFootprints = aEnable; } - const ISLAND_REMOVAL_MODE GetIslandRemovalMode() const { return m_islandRemovalMode; } - void SetIslandRemovalMode( ISLAND_REMOVAL_MODE aRemove ) { - m_islandRemovalMode = aRemove; } + const ISLAND_REMOVAL_MODE GetIslandRemovalMode() const { return m_islandRemovalMode; } + void SetIslandRemovalMode( ISLAND_REMOVAL_MODE aRemove ) { m_islandRemovalMode = aRemove; } - long long int GetMinIslandArea() const { return m_minIslandArea; } + long long int GetMinIslandArea() const { return m_minIslandArea; } void SetMinIslandArea( long long int aArea ) { m_minIslandArea = aArea; } /**