Woops, forgot to remove static, didn't even notice.

This commit is contained in:
Lirusaito
2016-07-08 02:05:25 -04:00
parent 727a91b689
commit da13f3599c
2 changed files with 2 additions and 2 deletions

View File

@@ -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<std::string>& strings); void send_estate_message(const std::string request, const std::vector<std::string>& strings);
static void cmd_append_names(const LLAvatarListEntry* entry, std::string &str, std::string &sep) static void cmd_append_names(const LLAvatarListEntry* entry, std::string &str, std::string &sep)
{ if(!str.empty())str.append(sep);str.append(entry->getName()); } { if(!str.empty())str.append(sep);str.append(entry->getName()); }

View File

@@ -9182,7 +9182,7 @@ class ListFreeze : public view_listener_t
} }
}; };
static void send_estate_message(const std::string request, const std::vector<std::string>& strings) void send_estate_message(const std::string request, const std::vector<std::string>& strings)
{ {
LLRegionInfoModel::sendEstateOwnerMessage(gMessageSystem, request, LLFloaterRegionInfo::getLastInvoice(), strings); LLRegionInfoModel::sendEstateOwnerMessage(gMessageSystem, request, LLFloaterRegionInfo::getLastInvoice(), strings);
} }