diff options
author | Todd Stinson <stinson@lindenlab.com> | 2012-01-18 16:24:15 -0800 |
---|---|---|
committer | Todd Stinson <stinson@lindenlab.com> | 2012-01-18 16:24:15 -0800 |
commit | fe18dda3df1c5061ac0b956bfebc261c45467738 (patch) | |
tree | 31194a89439171c7b552e075035fd90716383143 /indra/newview | |
parent | 47c9b857980d6bc32b03e2757c9d9fb689805b86 (diff) |
PATH-186: Removing unnecessary this-> reference.
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llfloaterpathfindinglinksets.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llfloaterpathfindinglinksets.cpp b/indra/newview/llfloaterpathfindinglinksets.cpp index 6067c8345c..16711190cd 100644 --- a/indra/newview/llfloaterpathfindinglinksets.cpp +++ b/indra/newview/llfloaterpathfindinglinksets.cpp @@ -695,7 +695,7 @@ void LLFloaterPathfindingLinksets::sendNavmeshDataGetRequest() mPathfindingLinksets.clearLinksets();
updateLinksetsList();
- std::string navmeshDataURL = this->getCapabilityURL();
+ std::string navmeshDataURL = getCapabilityURL();
if (navmeshDataURL.empty())
{
setFetchState(kFetchComplete);
@@ -711,7 +711,7 @@ void LLFloaterPathfindingLinksets::sendNavmeshDataGetRequest() void LLFloaterPathfindingLinksets::sendNavmeshDataPutRequest(const LLSD& pPostData)
{
- std::string navmeshDataURL = this->getCapabilityURL();
+ std::string navmeshDataURL = getCapabilityURL();
if (navmeshDataURL.empty())
{
llwarns << "cannot put navmesh data for current region '" << getRegionName() << "'" << llendl;
|