summaryrefslogtreecommitdiff
path: root/indra/llui/llfloater.cpp
diff options
context:
space:
mode:
authorTofu Linden <tofu.linden@lindenlab.com>2010-03-03 11:41:35 +0000
committerTofu Linden <tofu.linden@lindenlab.com>2010-03-03 11:41:35 +0000
commit962362503633f9fba741b1a45eb05b75a18a9f7d (patch)
treec70e936c416d1183f6f6d99de5f7a5554c0996cb /indra/llui/llfloater.cpp
parentf7ecfe6dc453bf06c24934b58f67637790fe3c44 (diff)
parent0e780c9b912913b3eddde251b62f6218df4c5587 (diff)
PE merge.
Diffstat (limited to 'indra/llui/llfloater.cpp')
-rw-r--r--indra/llui/llfloater.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/indra/llui/llfloater.cpp b/indra/llui/llfloater.cpp
index b6d73cda3c..e91d753a39 100644
--- a/indra/llui/llfloater.cpp
+++ b/indra/llui/llfloater.cpp
@@ -1554,7 +1554,12 @@ void LLFloater::onClickClose( LLFloater* self )
{
if (!self)
return;
- self->closeFloater(false);
+ self->onClickCloseBtn();
+}
+
+void LLFloater::onClickCloseBtn()
+{
+ closeFloater(false);
}