diff options
author | Todd Stinson <stinson@lindenlab.com> | 2012-04-09 18:53:52 -0700 |
---|---|---|
committer | Todd Stinson <stinson@lindenlab.com> | 2012-04-09 18:53:52 -0700 |
commit | 2115211328261d875dc0ccacdc2021f1c501a36d (patch) | |
tree | 0cc143ed25cfadc2b54f37a8895523bcf44e1582 /indra/llcommon | |
parent | 4888f7d34969b596e2b37ef72576118e1c0c27ac (diff) |
Re-implementing the path testing functionality as a proper LLTool.
Diffstat (limited to 'indra/llcommon')
-rw-r--r-- | indra/llcommon/llcursortypes.cpp | 1 | ||||
-rw-r--r-- | indra/llcommon/llcursortypes.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/indra/llcommon/llcursortypes.cpp b/indra/llcommon/llcursortypes.cpp index e987c397bd..dc308c30af 100644 --- a/indra/llcommon/llcursortypes.cpp +++ b/indra/llcommon/llcursortypes.cpp @@ -69,6 +69,7 @@ ECursorType getCursorFromString(const std::string& cursor_string) cursor_string_table["UI_CURSOR_TOOLSIT"] = UI_CURSOR_TOOLSIT; cursor_string_table["UI_CURSOR_TOOLBUY"] = UI_CURSOR_TOOLBUY; cursor_string_table["UI_CURSOR_TOOLOPEN"] = UI_CURSOR_TOOLOPEN; + cursor_string_table["UI_CURSOR_TOOLPATHFINDING"] = UI_CURSOR_TOOLPATHFINDING; } std::map<std::string,U32>::const_iterator iter = cursor_string_table.find(cursor_string); diff --git a/indra/llcommon/llcursortypes.h b/indra/llcommon/llcursortypes.h index bacb0a80ba..ea072ff4b4 100644 --- a/indra/llcommon/llcursortypes.h +++ b/indra/llcommon/llcursortypes.h @@ -65,6 +65,7 @@ enum ECursorType { UI_CURSOR_TOOLSIT, UI_CURSOR_TOOLBUY, UI_CURSOR_TOOLOPEN, + UI_CURSOR_TOOLPATHFINDING, UI_CURSOR_COUNT // Number of elements in this enum (NOT a cursor) }; |