From 63163db503317abab0c1a810281e6c89433620b6 Mon Sep 17 00:00:00 2001 From: Hazim Gazov Date: Thu, 6 May 2010 19:27:01 -0300 Subject: [PATCH] oops, I guess they changed that notification name --- indra/newview/llfloatermessagelog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/indra/newview/llfloatermessagelog.cpp b/indra/newview/llfloatermessagelog.cpp index 7634743a7..b728a3b28 100644 --- a/indra/newview/llfloatermessagelog.cpp +++ b/indra/newview/llfloatermessagelog.cpp @@ -789,7 +789,7 @@ BOOL LLFloaterMessageLog::onClickCloseCircuit(void* user_data) args["MESSAGE"] = "This will delete local circuit data.\nDo you want to tell the remote host to close the circuit too?"; LLSD payload; payload["netlistitem"] = (int)((void*)itemp); //oh god, this is so very wrong, wonder if there's another way to get LLSD to like pointers - LLNotifications::instance().add("GenericAlertYesNoCancel", args, payload, onConfirmCloseCircuit); + LLNotifications::instance().add("GenericAlertYesCancel", args, payload, onConfirmCloseCircuit); return TRUE; } // static @@ -822,7 +822,7 @@ void LLFloaterMessageLog::onConfirmCloseCircuit(S32 option, LLSD payload) args["MESSAGE"] = "That host had a region associated with it.\nDo you want to clean that up?"; LLSD payload; payload["region"] = (int)((void*)regionp); - LLNotifications::instance().add("GenericAlertYesNo", args, payload, onConfirmRemoveRegion); + LLNotifications::instance().add("GenericAlertYesCancel", args, payload, onConfirmRemoveRegion); } } // static