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

@@ -98,7 +98,7 @@ int main( int argc, char **argv )
bool ok = viewer_app_ptr->init();
if(!ok)
{
llwarns << "Application init failed." << llendl;
LL_WARNS() << "Application init failed." << LL_ENDL;
return -1;
}
@@ -231,7 +231,7 @@ void viewerappapi_init(ViewerAppAPI *server)
}
else
{
llwarns << "Unable to register service name: " << error->message << llendl;
LL_WARNS() << "Unable to register service name: " << error->message << LL_ENDL;
}
g_object_unref(serverproxy);
@@ -250,7 +250,7 @@ gboolean viewer_app_api_GoSLURL(ViewerAppAPI *obj, gchar *slurl, gboolean **succ
{
bool success = false;
llinfos << "Was asked to go to slurl: " << slurl << llendl;
LL_INFOS() << "Was asked to go to slurl: " << slurl << LL_ENDL;
std::string url = slurl;
LLMediaCtrl* web = NULL;
@@ -320,14 +320,14 @@ bool LLAppViewerLinux::sendURLToOtherInstance(const std::string& url)
}
else
{
llinfos << "Call-out to other instance failed (perhaps not running): " << error->message << llendl;
LL_INFOS() << "Call-out to other instance failed (perhaps not running): " << error->message << LL_ENDL;
}
g_object_unref(G_OBJECT(remote_object));
}
else
{
llwarns << "Couldn't connect to session bus: " << error->message << llendl;
LL_WARNS() << "Couldn't connect to session bus: " << error->message << LL_ENDL;
}
if (error)