diff options
Diffstat (limited to 'media/tools/player_wtl/player_wtl.cc')
-rw-r--r-- | media/tools/player_wtl/player_wtl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/media/tools/player_wtl/player_wtl.cc b/media/tools/player_wtl/player_wtl.cc index 5df87a7..3bb8f9e 100644 --- a/media/tools/player_wtl/player_wtl.cc +++ b/media/tools/player_wtl/player_wtl.cc @@ -31,7 +31,7 @@ int Run(wchar_t* win_cmd_line, int cmd_show) { CommandLine::Init(0, NULL); const CommandLine* cmd_line = CommandLine::ForCurrentProcess(); - std::vector<std::wstring> filenames(cmd_line->GetLooseValues()); + const std::vector<std::wstring>& filenames = cmd_line->args(); CMessageLoop the_loop; g_module.AddMessageLoop(&the_loop); |