diff --git a/indra/newview/llpanellogin.cpp b/indra/newview/llpanellogin.cpp index 1be856fdb..e9a38ba79 100644 --- a/indra/newview/llpanellogin.cpp +++ b/indra/newview/llpanellogin.cpp @@ -1136,9 +1136,9 @@ void LLPanelLogin::confirmDelete() LLNotificationsUtil::add("ConfirmDeleteUser", LLSD(), LLSD(), boost::bind(&LLPanelLogin::removeLogin, this, boost::bind(LLNotificationsUtil::getSelectedOption, _1, _2))); } -void LLPanelLogin::removeLogin(bool not) +void LLPanelLogin::removeLogin(bool knot) { - if (not) return; + if (knot) return; LLComboBox* combo(getChild("username_combo")); const std::string label(combo->getTextEntry()); if (combo->isTextDirty() || !combo->itemExists(label)) return; // Text entries aren't in the list diff --git a/indra/newview/llpanellogin.h b/indra/newview/llpanellogin.h index 6ede5cd35..35c3f5890 100644 --- a/indra/newview/llpanellogin.h +++ b/indra/newview/llpanellogin.h @@ -119,7 +119,7 @@ private: static void onNameCheckChanged(LLUICtrl* ctrl, void* data); static void clearPassword(); void confirmDelete(); - void removeLogin(bool not); + void removeLogin(bool knot); public: