Coding policy fixes.
This commit is contained in:
parent
06d63a2aa0
commit
92308698ba
|
@ -3,7 +3,7 @@
|
||||||
*
|
*
|
||||||
* Copyright (C) 2013 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
* Copyright (C) 2013 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
||||||
* Copyright (C) 2013 Wayne Stambaugh <stambaughw@gmail.com>
|
* Copyright (C) 2013 Wayne Stambaugh <stambaughw@gmail.com>
|
||||||
* Copyright (C) 1992-2023 KiCad Developers, see AUTHORS.txt for contributors.
|
* Copyright (C) 1992-2024 KiCad Developers, see AUTHORS.txt for contributors.
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU General Public License
|
* modify it under the terms of the GNU General Public License
|
||||||
|
@ -90,7 +90,7 @@ DIALOG_TEXT_PROPERTIES::DIALOG_TEXT_PROPERTIES( SCH_EDIT_FRAME* aParent, SCH_ITE
|
||||||
// Without this setting, on Windows, some esoteric unicode chars create display issue
|
// Without this setting, on Windows, some esoteric unicode chars create display issue
|
||||||
// in a wxStyledTextCtrl.
|
// in a wxStyledTextCtrl.
|
||||||
// for SetTechnology() info, see https://www.scintilla.org/ScintillaDoc.html#SCI_SETTECHNOLOGY
|
// for SetTechnology() info, see https://www.scintilla.org/ScintillaDoc.html#SCI_SETTECHNOLOGY
|
||||||
m_textCtrl->SetTechnology(wxSTC_TECHNOLOGY_DIRECTWRITE);
|
m_textCtrl->SetTechnology( wxSTC_TECHNOLOGY_DIRECTWRITE );
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
m_scintillaTricks = new SCINTILLA_TRICKS( m_textCtrl, wxT( "{}" ), false,
|
m_scintillaTricks = new SCINTILLA_TRICKS( m_textCtrl, wxT( "{}" ), false,
|
||||||
|
@ -99,6 +99,7 @@ DIALOG_TEXT_PROPERTIES::DIALOG_TEXT_PROPERTIES( SCH_EDIT_FRAME* aParent, SCH_ITE
|
||||||
{
|
{
|
||||||
wxPostEvent( this, wxCommandEvent( wxEVT_COMMAND_BUTTON_CLICKED, wxID_OK ) );
|
wxPostEvent( this, wxCommandEvent( wxEVT_COMMAND_BUTTON_CLICKED, wxID_OK ) );
|
||||||
},
|
},
|
||||||
|
|
||||||
// onCharAdded handler
|
// onCharAdded handler
|
||||||
[this]( wxStyledTextEvent& aEvent )
|
[this]( wxStyledTextEvent& aEvent )
|
||||||
{
|
{
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
*
|
*
|
||||||
* Copyright (C) 2016 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
* Copyright (C) 2016 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
||||||
* Copyright (C) 2023 CERN
|
* Copyright (C) 2023 CERN
|
||||||
* Copyright (C) 1992-2023 Kicad Developers, see AUTHORS.txt for contributors.
|
* Copyright (C) 1992-2024 Kicad Developers, see AUTHORS.txt for contributors.
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU General Public License
|
* modify it under the terms of the GNU General Public License
|
||||||
|
@ -82,7 +82,7 @@ SCH_SHEET::SCH_SHEET( EDA_ITEM* aParent, const VECTOR2I& aPos, VECTOR2I aSize,
|
||||||
m_pos = aPos;
|
m_pos = aPos;
|
||||||
m_size = aSize;
|
m_size = aSize;
|
||||||
m_screen = nullptr;
|
m_screen = nullptr;
|
||||||
|
|
||||||
m_borderWidth = 0;
|
m_borderWidth = 0;
|
||||||
m_borderColor = COLOR4D::UNSPECIFIED;
|
m_borderColor = COLOR4D::UNSPECIFIED;
|
||||||
m_backgroundColor = COLOR4D::UNSPECIFIED;
|
m_backgroundColor = COLOR4D::UNSPECIFIED;
|
||||||
|
@ -100,7 +100,7 @@ SCH_SHEET::SCH_SHEET( EDA_ITEM* aParent, const VECTOR2I& aPos, VECTOR2I aSize,
|
||||||
else
|
else
|
||||||
m_fields.back().SetLayer( LAYER_SHEETFIELDS );
|
m_fields.back().SetLayer( LAYER_SHEETFIELDS );
|
||||||
}
|
}
|
||||||
|
|
||||||
AutoAutoplaceFields( nullptr );
|
AutoAutoplaceFields( nullptr );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue