From a7733a6c5528c5edafd77a4d20d38a5d296602f4 Mon Sep 17 00:00:00 2001 From: Inusaito Sayori Date: Mon, 8 Dec 2014 11:45:52 -0500 Subject: [PATCH] Fixyfixy --- indra/newview/llfloatercustomize.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/indra/newview/llfloatercustomize.cpp b/indra/newview/llfloatercustomize.cpp index 6a319c568..026dfeb40 100644 --- a/indra/newview/llfloatercustomize.cpp +++ b/indra/newview/llfloatercustomize.cpp @@ -213,13 +213,13 @@ void LLFloaterCustomize::refreshCurrentOutfitName(const std::string& name) //mCurrentLookName->setText(outfit_name); LLStringUtil::format_map_t args; args["[OUTFIT]"] = outfit_name; - mMakeOutfitBtn->add(getString("Save changes to", args), true); + mMakeOutfitBtn->add(getString("Save changes to", args), LLSD(true)); return; } std::string string_name = gAgentWearables.isCOFChangeInProgress() ? "Changing outfits" : "No Outfit"; //mCurrentLookName->setText(getString(string_name)); - mMakeOutfitBtn->add(getString(string_name), false); + mMakeOutfitBtn->add(getString(string_name), LLSD()); //mOpenOutfitBtn->setEnabled(FALSE); } else @@ -227,7 +227,7 @@ void LLFloaterCustomize::refreshCurrentOutfitName(const std::string& name) //mCurrentLookName->setText(name); LLStringUtil::format_map_t args; args["[OUTFIT]"] = name; - mMakeOutfitBtn->add(getString("Save changes to", args), true); + mMakeOutfitBtn->add(getString("Save changes to", args), LLSD(true)); // Can't just call update verbs since the folder link may not have been created yet. //mOpenOutfitBtn->setEnabled(TRUE); }