Formatting.

This commit is contained in:
Jeff Young 2024-05-29 17:56:15 +01:00
parent 15d4e114e0
commit ec89d2c22e
1 changed files with 12 additions and 12 deletions

View File

@ -76,18 +76,18 @@ SYMBOL_CHOOSER_FRAME::SYMBOL_CHOOSER_FRAME( KIWAY* aKiway, wxWindow* aParent ) :
wxBoxSizer* frameSizer = new wxBoxSizer( wxVERTICAL );
std::vector<PICKED_SYMBOL> dummyAlreadyPlaced;
m_chooserPanel =
new PANEL_SYMBOL_CHOOSER( this, this, nullptr /* no filter */, s_SymbolHistoryList,
dummyAlreadyPlaced, false, false,
[this]()
{
wxCommandEvent dummy;
OnOK( dummy );
},
[this]()
{
DismissModal( false );
} );
m_chooserPanel = new PANEL_SYMBOL_CHOOSER( this, this, nullptr /* no filter */,
s_SymbolHistoryList,
dummyAlreadyPlaced, false, false,
[this]()
{
wxCommandEvent dummy;
OnOK( dummy );
},
[this]()
{
DismissModal( false );
} );
frameSizer->Add( m_chooserPanel, 1, wxEXPAND );