Fix stupid compile error

This commit is contained in:
Tim Warren 2015-05-20 08:39:33 -04:00
parent 16ba492e6b
commit 0f09ced684

View File

@ -94,7 +94,6 @@ public:
bool OnCmdLineParsed(wxCmdLineParser &parser) bool OnCmdLineParsed(wxCmdLineParser &parser)
{ {
// Get un-named parameters // Get un-named parameters
wxArrayString files;
int i; int i;
param_count = parser.GetParamCount(); param_count = parser.GetParamCount();
@ -102,7 +101,7 @@ public:
for (i = 0; i < param_count; i++) for (i = 0; i < param_count; i++)
{ {
Glob_files.Add(parser.GetParam(i)); files.Add(parser.GetParam(i));
} }
return true; return true;