From d26d93b32c86e037bfa1c355d0dafc0298ea9651 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Wed, 28 Oct 2020 22:47:52 +0000 Subject: [PATCH] Remove shadow version of autoplace fields variable. Fixes https://gitlab.com/kicad/code/kicad/issues/6199 --- eeschema/sch_sheet.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/eeschema/sch_sheet.h b/eeschema/sch_sheet.h index c6a74e496c..d6bb29e9ba 100644 --- a/eeschema/sch_sheet.h +++ b/eeschema/sch_sheet.h @@ -225,13 +225,10 @@ class SCH_SHEET : public SCH_ITEM // complex hierarchies multiple sheets can share a common screen. std::vector m_pins; // The list of sheet connection points. - std::vector m_fields; - FIELDS_AUTOPLACED m_fieldsAutoplaced; // Indicates status of field autoplacement. wxPoint m_pos; // The position of the sheet. wxSize m_size; // The size of the sheet. - int m_borderWidth; KIGFX::COLOR4D m_borderColor; KIGFX::COLOR4D m_backgroundColor;