diff options
author | Rider Linden <rider@lindenlab.com> | 2015-09-18 16:36:49 -0700 |
---|---|---|
committer | Rider Linden <rider@lindenlab.com> | 2015-09-18 16:36:49 -0700 |
commit | cf835a80cd2bb5d02cc03034009919e0d9eb73b6 (patch) | |
tree | 83430bb0a17229b57968d4f26b8fc65b9420e670 /indra/newview/llaisapi.cpp | |
parent | 96c87f326aee7b6499aae5ff3f6e208f2db6cd0e (diff) |
Pref instance() over getInstance()
Diffstat (limited to 'indra/newview/llaisapi.cpp')
-rwxr-xr-x | indra/newview/llaisapi.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llaisapi.cpp b/indra/newview/llaisapi.cpp index 5b7380a175..afc6e208e6 100755 --- a/indra/newview/llaisapi.cpp +++ b/indra/newview/llaisapi.cpp @@ -367,7 +367,7 @@ void AISAPI::UpdateItem(const LLUUID &itemId, const LLSD &updates, completion_t void AISAPI::EnqueueAISCommand(const std::string &procName, LLCoprocedureManager::CoProcedure_t proc) { std::string procFullName = "AIS(" + procName + ")"; - LLCoprocedureManager::getInstance()->enqueueCoprocedure("AIS", procFullName, proc); + LLCoprocedureManager::instance().enqueueCoprocedure("AIS", procFullName, proc); } |