7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-21 21:43:43 +00:00

pcbnew: fix rebase issue in BOARD_COMMIT

This commit is contained in:
Tomasz Wlostowski 2024-02-02 12:51:48 +01:00
parent 60ba72ad5c
commit a4936964e2
2 changed files with 8 additions and 1 deletions

View File

@ -77,6 +77,12 @@ BOARD_COMMIT::BOARD_COMMIT( TOOL_MANAGER* aMgr ) :
m_isFootprintEditor = true;
}
BOARD_COMMIT::BOARD_COMMIT( TOOL_MANAGER* aMgr, bool aIsBoardEditor ) :
m_toolMgr( aMgr ),
m_isBoardEditor( aIsBoardEditor )
{
}
BOARD* BOARD_COMMIT::GetBoard() const
{

View File

@ -48,7 +48,8 @@ class BOARD_COMMIT : public COMMIT
public:
BOARD_COMMIT( EDA_DRAW_FRAME* aFrame );
BOARD_COMMIT( TOOL_BASE* aTool );
BOARD_COMMIT( TOOL_MANAGER* aMgr, bool aIsBoardEditor = false );
BOARD_COMMIT( TOOL_MANAGER* aMgr );
BOARD_COMMIT( TOOL_MANAGER* aMgr, bool aIsBoardEditor );
virtual ~BOARD_COMMIT() {}