diff options
author | Todd Stinson <stinson@lindenlab.com> | 2011-12-16 18:11:43 -0800 |
---|---|---|
committer | Todd Stinson <stinson@lindenlab.com> | 2011-12-16 18:11:43 -0800 |
commit | 1598724b462b062670a94353e397b092c1dbb598 (patch) | |
tree | a52dfb5f337e908b85c158f567ae778a25fe3ee4 /indra/newview/llfloaterpathfindingconsole.h | |
parent | b54b50b3da2db912b17aaa0f0314a519d9ded5aa (diff) |
Moving the call to initialize the LLPathingLib instance to the pathfinding console floater onOpen() callback.
Diffstat (limited to 'indra/newview/llfloaterpathfindingconsole.h')
-rw-r--r-- | indra/newview/llfloaterpathfindingconsole.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/llfloaterpathfindingconsole.h b/indra/newview/llfloaterpathfindingconsole.h index b6107ea64b..8dc9ccd342 100644 --- a/indra/newview/llfloaterpathfindingconsole.h +++ b/indra/newview/llfloaterpathfindingconsole.h @@ -29,6 +29,7 @@ #define LL_LLFLOATERPATHFINDINGCONSOLE_H #include "llfloater.h" +#include "llnavmeshstation.h"
class LLSD; class LLCheckBoxCtrl; @@ -49,6 +50,8 @@ private: LLFloaterPathfindingConsole(const LLSD& pSeed); virtual ~LLFloaterPathfindingConsole(); + virtual void onOpen(const LLSD& pKey); + void onShowNavmeshToggle(); void onShowExcludeVolumesToggle(); void onShowPathToggle(); @@ -59,6 +62,8 @@ private: LLCheckBoxCtrl *mShowExcludeVolumesCheckBox; LLCheckBoxCtrl *mShowPathCheckBox; LLCheckBoxCtrl *mShowWaterPlaneCheckBox; + + LLNavMeshDownloadObserver mNavmeshDownloadObserver; }; #endif // LL_LLFLOATERPATHFINDINGCONSOLE_H |