diff options
| author | Oz Linden <oz@lindenlab.com> | 2013-08-19 15:15:15 -0400 |
|---|---|---|
| committer | Oz Linden <oz@lindenlab.com> | 2013-08-19 15:15:15 -0400 |
| commit | 82bf4e4db2bdb9effdf64e9edaa76a78913e25d3 (patch) | |
| tree | 7f44a97fdf51222e743e18464d1b2d0ccb5b830e /indra/newview/llappviewermacosx.cpp | |
| parent | 731fe3e7c6287c63134c1a08572f9d97a0eb0ff0 (diff) | |
| parent | 86b4019684af96a64a1d439851f177d7c18e4c24 (diff) | |
merge changes for DRTVWR-285
Diffstat (limited to 'indra/newview/llappviewermacosx.cpp')
| -rwxr-xr-x | indra/newview/llappviewermacosx.cpp | 19 |
1 files changed, 2 insertions, 17 deletions
diff --git a/indra/newview/llappviewermacosx.cpp b/indra/newview/llappviewermacosx.cpp index 4d340cafa9..c7b437598c 100755 --- a/indra/newview/llappviewermacosx.cpp +++ b/indra/newview/llappviewermacosx.cpp @@ -148,28 +148,13 @@ bool LLAppViewerMacOSX::initParseCommandLine(LLCommandLineParser& clp) // The next two lines add the support for parsing the mac -psn_XXX arg. clp.addOptionDesc("psn", NULL, 1, "MacOSX process serial number"); clp.setCustomParser(parse_psn); - - // First read in the args from arguments txt. - const char* filename = "arguments.txt"; - llifstream ifs(filename, llifstream::binary); - if (!ifs.is_open()) - { - llwarns << "Unable to open file" << filename << llendl; - return false; - } - - if(clp.parseCommandLineFile(ifs) == false) - { - return false; - } - // Then parse the user's command line, so that any --url arg can appear last - // Succesive calls to clp.parse... will NOT override earlier options. + // parse the user's command line if(clp.parseCommandLine(gArgC, gArgV) == false) { return false; } - + // Get the user's preferred language string based on the Mac OS localization mechanism. // To add a new localization: // go to the "Resources" section of the project |
