summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorprep <none@none>2012-04-10 14:35:04 -0400
committerprep <none@none>2012-04-10 14:35:04 -0400
commit9af840bcd4a9a65cae68dd940db3911e7b5ebbeb (patch)
tree4a71903ecba116b3a297b83a3b5f92f261ee33e6 /indra/newview
parent31543e637bcb0e6ddc83d21a3efdbe242fcf9f71 (diff)
parent7f49803dd284417674988a4de5262ad63f66d092 (diff)
merge
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llfloaterpathfindingconsole.cpp14
-rw-r--r--indra/newview/llpathfindingpathtool.cpp2
-rw-r--r--indra/newview/llpathfindingpathtool.h4
3 files changed, 11 insertions, 9 deletions
diff --git a/indra/newview/llfloaterpathfindingconsole.cpp b/indra/newview/llfloaterpathfindingconsole.cpp
index 7941fd52af..afbf589e5e 100644
--- a/indra/newview/llfloaterpathfindingconsole.cpp
+++ b/indra/newview/llfloaterpathfindingconsole.cpp
@@ -891,17 +891,21 @@ void LLFloaterPathfindingConsole::setAgentState(LLPathfindingManager::EAgentStat
void LLFloaterPathfindingConsole::switchIntoTestPathMode()
{
llassert(mPathfindingToolset != NULL);
- llassert(mSavedToolset == NULL);
- mSavedToolset = LLToolMgr::getInstance()->getCurrentToolset();
- LLToolMgr::getInstance()->setCurrentToolset(mPathfindingToolset);
+ LLToolMgr *toolMgrInstance = LLToolMgr::getInstance();
+ if (toolMgrInstance->getCurrentToolset() != mPathfindingToolset)
+ {
+ mSavedToolset = toolMgrInstance->getCurrentToolset();
+ toolMgrInstance->setCurrentToolset(mPathfindingToolset);
+ }
}
void LLFloaterPathfindingConsole::switchOutOfTestPathMode()
{
llassert(mPathfindingToolset != NULL);
- if (mSavedToolset != NULL)
+ LLToolMgr *toolMgrInstance = LLToolMgr::getInstance();
+ if (toolMgrInstance->getCurrentToolset() == mPathfindingToolset)
{
- LLToolMgr::getInstance()->setCurrentToolset(mSavedToolset);
+ toolMgrInstance->setCurrentToolset(mSavedToolset);
mSavedToolset = NULL;
}
}
diff --git a/indra/newview/llpathfindingpathtool.cpp b/indra/newview/llpathfindingpathtool.cpp
index 6200586cf1..8147cb95d5 100644
--- a/indra/newview/llpathfindingpathtool.cpp
+++ b/indra/newview/llpathfindingpathtool.cpp
@@ -32,7 +32,7 @@
#include "llviewerwindow.h"
#include "llviewercamera.h"
#include "llpathfindingmanager.h"
-#include "llpathinglib.h"
+#include "LLPathingLib.h"
#include <boost/function.hpp>
#include <boost/signals2.hpp>
diff --git a/indra/newview/llpathfindingpathtool.h b/indra/newview/llpathfindingpathtool.h
index 80d3b4cceb..1e17b71bd3 100644
--- a/indra/newview/llpathfindingpathtool.h
+++ b/indra/newview/llpathfindingpathtool.h
@@ -30,7 +30,7 @@
#include "llsingleton.h"
#include "lltool.h"
-#include "llpathinglib.h"
+#include "LLPathingLib.h"
#include <boost/function.hpp>
#include <boost/signals2.hpp>
@@ -60,8 +60,6 @@ public:
kCharacterTypeD
} ECharacterType;
- typedef
-
LLPathfindingPathTool();
virtual ~LLPathfindingPathTool();