diff --git a/indra/newview/llpanelavatar.cpp b/indra/newview/llpanelavatar.cpp index f5ebef4e6..36b0422ab 100644 --- a/indra/newview/llpanelavatar.cpp +++ b/indra/newview/llpanelavatar.cpp @@ -335,7 +335,7 @@ void show_log_browser(const LLUUID& id) void show_log_browser(const std::string& name, const std::string& id); LLAvatarName av_name; LLAvatarNameCache::get(id, &av_name); - show_log_browser(av_name->getLegacyName(), id.asString()); + show_log_browser(av_name.getLegacyName(), id.asString()); } BOOL LLPanelAvatarSecondLife::postBuild() { diff --git a/indra/newview/llviewermenu.cpp b/indra/newview/llviewermenu.cpp index e483c0480..bc87afdb1 100644 --- a/indra/newview/llviewermenu.cpp +++ b/indra/newview/llviewermenu.cpp @@ -9062,7 +9062,7 @@ class ListShowLog : public view_listener_t { bool handleEvent(LLPointer event, const LLSD& userdata) { - void show_log_browser(const LLUUID& id) + void show_log_browser(const LLUUID& id); for (const LLUUID& id : get_focused_list_ids_selected()) show_log_browser(id); return true;