From da13f3599c34e3527352a2b7023d51068f58f96b Mon Sep 17 00:00:00 2001 From: Lirusaito Date: Fri, 8 Jul 2016 02:05:25 -0400 Subject: [PATCH] Woops, forgot to remove static, didn't even notice. --- indra/newview/llfloateravatarlist.cpp | 2 +- indra/newview/llviewermenu.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/indra/newview/llfloateravatarlist.cpp b/indra/newview/llfloateravatarlist.cpp index 54956d6ec..8f54a4e4d 100644 --- a/indra/newview/llfloateravatarlist.cpp +++ b/indra/newview/llfloateravatarlist.cpp @@ -1355,7 +1355,7 @@ void send_eject(const LLUUID& avatar_id, bool ban) } } -static void send_estate_message(const std::string request, const std::vector& strings); +void send_estate_message(const std::string request, const std::vector& strings); static void cmd_append_names(const LLAvatarListEntry* entry, std::string &str, std::string &sep) { if(!str.empty())str.append(sep);str.append(entry->getName()); } diff --git a/indra/newview/llviewermenu.cpp b/indra/newview/llviewermenu.cpp index d56d7092b..dca186e0e 100644 --- a/indra/newview/llviewermenu.cpp +++ b/indra/newview/llviewermenu.cpp @@ -9182,7 +9182,7 @@ class ListFreeze : public view_listener_t } }; -static void send_estate_message(const std::string request, const std::vector& strings) +void send_estate_message(const std::string request, const std::vector& strings) { LLRegionInfoModel::sendEstateOwnerMessage(gMessageSystem, request, LLFloaterRegionInfo::getLastInvoice(), strings); }