The parameterized interface doesn't like its parameters quoted.

This commit is contained in:
Jeff Young 2021-09-30 19:10:23 +01:00
parent b9596a0a5d
commit b6d723e44e
1 changed files with 0 additions and 2 deletions

View File

@ -810,13 +810,11 @@ void PROJECT_TREE_PANE::onOpenSelectedFileWithTextEditor( wxCommandEvent& event
}
std::vector<PROJECT_TREE_ITEM*> tree_data = GetSelectedData();
wxString files;
for( PROJECT_TREE_ITEM* item_data : tree_data )
{
wxString fullFileName = item_data->GetFileName();
QuoteString( fullFileName );
if( !files.IsEmpty() )
files += " ";