Remove old, obsolete convenience method from FSCommon

Ansariel 2014-05-16 10:20:02 +02:00
parent 429599f8bc
commit 04e403a7c5
2 changed files with 0 additions and 11 deletions

View File

@ -142,16 +142,6 @@ std::string formatString(std::string text, const LLStringUtil::format_map_t& arg
return text;
}
LLPanelPeople* getPeoplePanel()
{
LLPanel* panel_people = LLFloaterSidePanelContainer::getPanel("people", "panel_people");
if (panel_people)
{
return dynamic_cast<LLPanelPeople*>(panel_people);
}
return NULL;
}
S32 FSCommon::secondsSinceEpochFromString(const std::string& format, const std::string& str)
{
// LLDateUtil::secondsSinceEpochFromString does not handle time, only the date.

View File

@ -42,7 +42,6 @@ void reportToNearbyChat(const std::string& message);
std::string applyAutoCloseOoc(const std::string& message);
std::string applyMuPose(const std::string& message);
std::string formatString(std::string text, const LLStringUtil::format_map_t& args);
LLPanelPeople* getPeoplePanel();
namespace FSCommon
{