aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llconfirmationmanager.cpp
diff options
context:
space:
mode:
authorJacek Antonelli2008-09-06 18:24:57 -0500
committerJacek Antonelli2008-09-06 18:25:07 -0500
commit798d367d54a6c6379ad355bd8345fa40e31e7fe9 (patch)
tree1921f1708cd0240648c97bc02df2c2ab5f2fc41e /linden/indra/newview/llconfirmationmanager.cpp
parentSecond Life viewer sources 1.20.15 (diff)
downloadmeta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.zip
meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.gz
meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.bz2
meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.xz
Second Life viewer sources 1.21.0-RC
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/llconfirmationmanager.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/linden/indra/newview/llconfirmationmanager.cpp b/linden/indra/newview/llconfirmationmanager.cpp
index 01b0a23..0e56452 100644
--- a/linden/indra/newview/llconfirmationmanager.cpp
+++ b/linden/indra/newview/llconfirmationmanager.cpp
@@ -59,7 +59,7 @@ static void onConfirmAlert(S32 option, void* data)
59} 59}
60 60
61static void onConfirmAlertPassword( 61static void onConfirmAlertPassword(
62 S32 option, const LLString& text, void* data) 62 S32 option, const std::string& text, void* data)
63{ 63{
64 LLConfirmationManager::ListenerBase* listener 64 LLConfirmationManager::ListenerBase* listener
65 = (LLConfirmationManager::ListenerBase*)data; 65 = (LLConfirmationManager::ListenerBase*)data;
@@ -77,7 +77,7 @@ void LLConfirmationManager::confirm(Type type,
77 const std::string& action, 77 const std::string& action,
78 ListenerBase* listener) 78 ListenerBase* listener)
79{ 79{
80 LLString::format_map_t args; 80 LLStringUtil::format_map_t args;
81 args["[ACTION]"] = action; 81 args["[ACTION]"] = action;
82 82
83 switch (type) 83 switch (type)
@@ -91,7 +91,7 @@ void LLConfirmationManager::confirm(Type type,
91 gViewerWindow->alertXmlEditText("ConfirmPurchasePassword", args, 91 gViewerWindow->alertXmlEditText("ConfirmPurchasePassword", args,
92 NULL, NULL, 92 NULL, NULL,
93 onConfirmAlertPassword, listener, 93 onConfirmAlertPassword, listener,
94 LLString::format_map_t(), 94 LLStringUtil::format_map_t(),
95 TRUE); 95 TRUE);
96 break; 96 break;
97 case TYPE_NONE: 97 case TYPE_NONE: