Fix build error on gcc

This commit is contained in:
Jon Evans 2020-04-21 19:29:34 -04:00
parent 93d0f19e3f
commit 61f28f0958
1 changed files with 1 additions and 1 deletions

View File

@ -1102,7 +1102,7 @@ void DIALOG_FIELDS_EDITOR_GLOBAL::OnTableColSize( wxGridSizeEvent& aEvent )
wxString key = m_grid->GetColLabelValue( col );
if( m_grid->GetColSize( col ) )
cfg->m_FieldEditorPanel.column_widths[ key ] = m_grid->GetColSize( col );
cfg->m_FieldEditorPanel.column_widths[ key.ToStdString() ] = m_grid->GetColSize( col );
aEvent.Skip();
}