diff options
author | Aimee Linden <aimee@lindenlab.com> | 2010-06-15 14:57:16 +0100 |
---|---|---|
committer | Aimee Linden <aimee@lindenlab.com> | 2010-06-15 14:57:16 +0100 |
commit | 0b523e402720493cd19a2fa08f8cffceea01eadf (patch) | |
tree | dc5137535761f87729932ed1de2ec33273b43b32 /indra/newview/llagentwearables.cpp | |
parent | d5ddb91a6809540cdb407cd48eff32b2c595d5db (diff) | |
parent | fce2653f6b5e8ca3509d13e3449b1fdd2f5ff826 (diff) |
Merge
Diffstat (limited to 'indra/newview/llagentwearables.cpp')
-rw-r--r-- | indra/newview/llagentwearables.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/indra/newview/llagentwearables.cpp b/indra/newview/llagentwearables.cpp index 342f9a5d80..557b3b0a77 100644 --- a/indra/newview/llagentwearables.cpp +++ b/indra/newview/llagentwearables.cpp @@ -2099,7 +2099,19 @@ void LLAgentWearables::populateMyOutfitsFolder(void) } } +boost::signals2::connection LLAgentWearables::addLoadingStartedCallback(loading_started_callback_t cb) +{ + return mLoadingStartedSignal.connect(cb); +} + boost::signals2::connection LLAgentWearables::addLoadedCallback(loaded_callback_t cb) { return mLoadedSignal.connect(cb); } + +void LLAgentWearables::notifyLoadingStarted() +{ + mLoadingStartedSignal(); +} + +// EOF |