diff options
author | Roxie Linden <roxie@lindenlab.com> | 2010-05-10 15:25:49 -0700 |
---|---|---|
committer | Roxie Linden <roxie@lindenlab.com> | 2010-05-10 15:25:49 -0700 |
commit | 2fd59393fc3420c37937731b08b5ee9e5f2f2ab6 (patch) | |
tree | 9acb15bc211abd9cf8d173890ebe3b0d676dbc7e /indra/newview/lllandmarkactions.cpp | |
parent | 5a6237741608efb0ff669f422596178f93fbe120 (diff) | |
parent | 60805b6f202b90b86d90d96eb7d09ae3355343eb (diff) |
Automated Merge
Diffstat (limited to 'indra/newview/lllandmarkactions.cpp')
-rw-r--r-- | indra/newview/lllandmarkactions.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/lllandmarkactions.cpp b/indra/newview/lllandmarkactions.cpp index 7336efb62a..539ca97a93 100644 --- a/indra/newview/lllandmarkactions.cpp +++ b/indra/newview/lllandmarkactions.cpp @@ -299,7 +299,7 @@ void LLLandmarkActions::getSLURLfromPosGlobal(const LLVector3d& global_pos, slur bool gotSimName = LLWorldMap::getInstance()->simNameFromPosGlobal(global_pos, sim_name); if (gotSimName) { - std::string slurl = LLSLURL::buildSLURLfromPosGlobal(sim_name, global_pos, escaped); + std::string slurl = LLSLURL(sim_name, global_pos).getSLURLString(); cb(slurl); return; @@ -351,7 +351,7 @@ void LLLandmarkActions::onRegionResponseSLURL(slurl_callback_t cb, bool gotSimName = LLWorldMap::getInstance()->simNameFromPosGlobal(global_pos, sim_name); if (gotSimName) { - slurl = LLSLURL::buildSLURLfromPosGlobal(sim_name, global_pos, escaped); + slurl = LLSLURL(sim_name, global_pos).getSLURLString(); } else { |