diff options
Diffstat (limited to 'indra/newview/llwldaycycle.cpp')
-rw-r--r-- | indra/newview/llwldaycycle.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llwldaycycle.cpp b/indra/newview/llwldaycycle.cpp index 1abf760580..9f8ddc1029 100644 --- a/indra/newview/llwldaycycle.cpp +++ b/indra/newview/llwldaycycle.cpp @@ -82,9 +82,9 @@ void LLWLDayCycle::loadDayCycle(const std::string & fileName) if(!success) { // alert the user - LLStringUtil::format_map_t args; - args["[SKY]"] = day_data[i][1].asString(); - gViewerWindow->alertXml("WLMissingSky", args); + LLSD args; + args["SKY"] = day_data[i][1].asString(); + LLNotifications::instance().add("WLMissingSky", args); continue; } |