summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordolphin <dolphin@lindenlab.com>2014-03-25 13:01:22 -0700
committerdolphin <dolphin@lindenlab.com>2014-03-25 13:01:22 -0700
commit572af460ec02494e405face52d49cd8b41f8c9f4 (patch)
tree281d102c71ce35343e4365caaad2139867d7699c
parent1d83b76e077054f880920efb3b2fc0c38094fc33 (diff)
Attempting to fix the mac build, take 2
-rw-r--r--indra/newview/llexperiencelog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llexperiencelog.cpp b/indra/newview/llexperiencelog.cpp
index 66129a39a2..f1e097f22d 100644
--- a/indra/newview/llexperiencelog.cpp
+++ b/indra/newview/llexperiencelog.cpp
@@ -268,6 +268,6 @@ void LLExperienceLog::setNotifyNewEvent( bool val )
}
else if( val && !mNotifyConnection.connected())
{
- mNotifyConnection = addUpdateSignal((callback_slot_t)notify);
+ mNotifyConnection = addUpdateSignal(boost::function<void(LLSD&)>(LLExperienceLog::notify));
}
}