diff options
author | alain@945battery-guestA-183.lindenlab.com <alain@945battery-guestA-183.lindenlab.com> | 2011-03-28 13:34:44 -0700 |
---|---|---|
committer | alain@945battery-guestA-183.lindenlab.com <alain@945battery-guestA-183.lindenlab.com> | 2011-03-28 13:34:44 -0700 |
commit | d97d1326c24f7f163fbeabb3ad41f72c9ded950d (patch) | |
tree | 7a627ca284486c0b6f91bbcf323a1bed9437fdcf /indra/newview/llpreviewscript.cpp | |
parent | 7564583238c8fabe042dedf7d7491fa0a81db8f3 (diff) | |
parent | 5b316df2249fc62c1e6a4f089b9726c4e62f23e0 (diff) |
merge
Diffstat (limited to 'indra/newview/llpreviewscript.cpp')
-rw-r--r-- | indra/newview/llpreviewscript.cpp | 23 |
1 files changed, 19 insertions, 4 deletions
diff --git a/indra/newview/llpreviewscript.cpp b/indra/newview/llpreviewscript.cpp index 22ff362b5a..b19bf5d234 100644 --- a/indra/newview/llpreviewscript.cpp +++ b/indra/newview/llpreviewscript.cpp @@ -956,16 +956,31 @@ void LLScriptEdCore::openInExternalEditor() // Open it in external editor. { LLExternalEditor ed; + LLExternalEditor::EErrorCode status; + std::string msg; - if (!ed.setCommand("LL_SCRIPT_EDITOR")) + status = ed.setCommand("LL_SCRIPT_EDITOR"); + if (status != LLExternalEditor::EC_SUCCESS) { - std::string msg = "Select an editor by setting the environment variable LL_SCRIPT_EDITOR " - "or the ExternalEditor setting"; // *TODO: localize + if (status == LLExternalEditor::EC_NOT_SPECIFIED) // Use custom message for this error. + { + msg = getString("external_editor_not_set"); + } + else + { + msg = LLExternalEditor::getErrorMessage(status); + } + LLNotificationsUtil::add("GenericAlert", LLSD().with("MESSAGE", msg)); return; } - ed.run(filename); + status = ed.run(filename); + if (status != LLExternalEditor::EC_SUCCESS) + { + msg = LLExternalEditor::getErrorMessage(status); + LLNotificationsUtil::add("GenericAlert", LLSD().with("MESSAGE", msg)); + } } } |