Remove windows specific quoting now that jack autostart works on windows

This allows jack2 to autostart using the .jackdrc we write
This commit is contained in:
Tim Mayberry
2013-07-25 15:03:32 +10:00
parent 538a1e79c4
commit ee00dce911

View File

@@ -872,11 +872,7 @@ ARDOUR::get_jack_command_line_string (const JackCommandLineOptions& options, str
ostringstream oss;
for (vector<string>::const_iterator i = args.begin(); i != args.end();) {
#ifdef PLATFORM_WINDOWS
oss << quote_string (*i);
#else
oss << *i;
#endif
if (++i != args.end()) oss << ' ';
}