The parameterized interface doesn't like its parameters quoted.
This commit is contained in:
parent
b9596a0a5d
commit
b6d723e44e
|
@ -810,13 +810,11 @@ void PROJECT_TREE_PANE::onOpenSelectedFileWithTextEditor( wxCommandEvent& event
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<PROJECT_TREE_ITEM*> tree_data = GetSelectedData();
|
std::vector<PROJECT_TREE_ITEM*> tree_data = GetSelectedData();
|
||||||
|
|
||||||
wxString files;
|
wxString files;
|
||||||
|
|
||||||
for( PROJECT_TREE_ITEM* item_data : tree_data )
|
for( PROJECT_TREE_ITEM* item_data : tree_data )
|
||||||
{
|
{
|
||||||
wxString fullFileName = item_data->GetFileName();
|
wxString fullFileName = item_data->GetFileName();
|
||||||
QuoteString( fullFileName );
|
|
||||||
|
|
||||||
if( !files.IsEmpty() )
|
if( !files.IsEmpty() )
|
||||||
files += " ";
|
files += " ";
|
||||||
|
|
Loading…
Reference in New Issue