No longer include llerrorlegacy.h. Updated llstl to include deletion utilites.

This commit is contained in:
Shyotl
2015-06-19 03:54:20 -05:00
parent 283f5298d5
commit 1c627317ec
634 changed files with 8200 additions and 12214 deletions

View File

@@ -79,7 +79,7 @@ void make_ui_sound(const char* namep)
std::string name = ll_safe_string(namep);
if (!LLUI::sConfigGroup->controlExists(name))
{
llwarns << "tried to make ui sound for unknown sound name: " << name << llendl;
LL_WARNS() << "tried to make ui sound for unknown sound name: " << name << LL_ENDL;
}
else
{
@@ -90,12 +90,12 @@ void make_ui_sound(const char* namep)
{
if (LLUI::sConfigGroup->getBOOL("UISndDebugSpamToggle"))
{
llinfos << "ui sound name: " << name << " triggered but silent (null uuid)" << llendl;
LL_INFOS() << "ui sound name: " << name << " triggered but silent (null uuid)" << LL_ENDL;
}
}
else
{
llwarns << "ui sound named: " << name << " does not translate to a valid uuid" << llendl;
LL_WARNS() << "ui sound named: " << name << " does not translate to a valid uuid" << LL_ENDL;
}
}
@@ -103,7 +103,7 @@ void make_ui_sound(const char* namep)
{
if (LLUI::sConfigGroup->getBOOL("UISndDebugSpamToggle"))
{
llinfos << "ui sound name: " << name << llendl;
LL_INFOS() << "ui sound name: " << name << LL_ENDL;
}
LLUI::sAudioCallback(uuid);
}
@@ -137,7 +137,7 @@ void LLUI::initClass(LLControlGroup* config,
|| sIgnoresGroup == NULL
|| sColorsGroup == NULL)
{
llerrs << "Failure to initialize configuration groups" << llendl;
LL_ERRS() << "Failure to initialize configuration groups" << LL_ENDL;
}
sAudioCallback = audio_callback;