aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llconfirmationmanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/newview/llconfirmationmanager.cpp')
-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: