diff options
author | dolphin <dolphin@lindenlab.com> | 2014-03-25 12:06:27 -0700 |
---|---|---|
committer | dolphin <dolphin@lindenlab.com> | 2014-03-25 12:06:27 -0700 |
commit | 1d83b76e077054f880920efb3b2fc0c38094fc33 (patch) | |
tree | c4afb471d11bcb12cd4a08f72af82a74bc08d16a /indra/newview/llexperiencelog.cpp | |
parent | c82a884ef46a31a999f4f402efdc0f42d457f695 (diff) |
Attempting ti fix the mac build
Diffstat (limited to 'indra/newview/llexperiencelog.cpp')
-rw-r--r-- | indra/newview/llexperiencelog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llexperiencelog.cpp b/indra/newview/llexperiencelog.cpp index 5f9fab306b..66129a39a2 100644 --- a/indra/newview/llexperiencelog.cpp +++ b/indra/newview/llexperiencelog.cpp @@ -254,7 +254,7 @@ void LLExperienceLog::setMaxDays( U32 val ) } } -LLExperienceLog::callback_connection_t LLExperienceLog::addUpdateSignal( callback_slot_t cb ) +LLExperienceLog::callback_connection_t LLExperienceLog::addUpdateSignal( const callback_slot_t& cb ) { return mSignals.connect(cb); } @@ -268,6 +268,6 @@ void LLExperienceLog::setNotifyNewEvent( bool val ) } else if( val && !mNotifyConnection.connected()) { - mNotifyConnection = addUpdateSignal(notify); + mNotifyConnection = addUpdateSignal((callback_slot_t)notify); } } |