summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTofu Linden <tofu.linden@lindenlab.com>2010-09-30 12:06:44 +0100
committerTofu Linden <tofu.linden@lindenlab.com>2010-09-30 12:06:44 +0100
commit5b3f293453af7c54ef5c1913c706982ece8be1d0 (patch)
treeba24e7e3da2df4aa548c0fb1bd17784f2722a1fe
parentdd6a77c9e1baeec7276d3599b73d5cde384e810f (diff)
more de-crufting.
-rw-r--r--indra/newview/llscriptfloater.cpp1
-rw-r--r--indra/newview/llviewermessage.cpp5
2 files changed, 2 insertions, 4 deletions
diff --git a/indra/newview/llscriptfloater.cpp b/indra/newview/llscriptfloater.cpp
index 53a5881f4b..170e23e4c5 100644
--- a/indra/newview/llscriptfloater.cpp
+++ b/indra/newview/llscriptfloater.cpp
@@ -592,7 +592,6 @@ bool LLScriptFloater::isScriptTextbox(LLNotificationPtr notification)
for (int i=0; i<num_options; ++i)
{
LLSD form_element = form->getElement(i);
- llwarns << form_element << llendl;
if (form_element["name"].asString() == TEXTBOX_MAGIC_TOKEN)
{
return true;
diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp
index 02d27be4ec..dfd7b1092a 100644
--- a/indra/newview/llviewermessage.cpp
+++ b/indra/newview/llviewermessage.cpp
@@ -6175,8 +6175,7 @@ const char* SCRIPT_DIALOG_HEADER = "Script Dialog:\n";
bool callback_script_dialog(const LLSD& notification, const LLSD& response)
{
LLNotificationForm form(notification["form"]);
- //std::string button = "booya";//LLNotification::getSelectedOptionName(response);
- llwarns << "ok: " << response << llendl;
+
std::string rtn_text;
S32 button_idx;
button_idx = LLNotification::getSelectedOption(notification, response);
@@ -6191,7 +6190,7 @@ bool callback_script_dialog(const LLSD& notification, const LLSD& response)
{
rtn_text = LLNotification::getSelectedOptionName(response);
}
- llwarns << "rtn: " << rtn_text << " btnidx: " << button_idx << llendl;
+
// Didn't click "Ignore"
if (button_idx != -1)
{