diff --git a/doc/contributions.txt b/doc/contributions.txt index a8677ac5dd8666341f84e21d57c8773e28e00ac8..1f409ac596cc37d13d6b6cb8ddaa93acbdf49187 100644 --- a/doc/contributions.txt +++ b/doc/contributions.txt @@ -107,8 +107,6 @@ Grazer Kline VWR-1092 Gudmund Shepherd VWR-1594 -Hamncheese Omlet - VWR-333 Henri Beauchamp VWR-1406 Hikkoshi Sakai @@ -218,7 +216,6 @@ Paul Churchill VWR-1567 VWR-1647 VWR-1880 - VWR-2072 Paula Innis VWR-30 VWR-293 diff --git a/indra/newview/llimpanel.cpp b/indra/newview/llimpanel.cpp index d57f5bf1f20a219fd70d2c0f1e56c98baf55f420..8d628d1b4f36d44a9f966b6d4cff8f99f6cd4822 100644 --- a/indra/newview/llimpanel.cpp +++ b/indra/newview/llimpanel.cpp @@ -966,7 +966,6 @@ BOOL LLFloaterIMPanel::postBuild() childSetAction("end_call_btn", onClickEndCall, this); childSetAction("send_btn", onClickSend, this); childSetAction("toggle_active_speakers_btn", onClickToggleActiveSpeakers, this); - childSetAction("offer_tp_btn", onClickOfferTeleport, this); //LLButton* close_btn = LLUICtrlFactory::getButtonByName(this, "close_btn"); //close_btn->setClickedCallback(&LLFloaterIMPanel::onClickClose, this); @@ -1060,13 +1059,6 @@ void LLFloaterIMPanel::draw() childSetEnabled("start_call_btn", enable_connect); childSetEnabled("send_btn", !childGetValue("chat_editor").asString().empty()); - const LLRelationship* info = NULL; - info = LLAvatarTracker::instance().getBuddyInfo(mOtherParticipantUUID); - if (info) - { - childSetEnabled("offer_tp_btn", info->isOnline()); - } - if (mAutoConnect && enable_connect) { onClickStartCall(this); @@ -1393,13 +1385,6 @@ void LLFloaterIMPanel::onTabClick(void* userdata) self->setInputFocus(TRUE); } -// static -void LLFloaterIMPanel::onClickOfferTeleport(void* userdata) -{ - LLFloaterIMPanel* self = (LLFloaterIMPanel*) userdata; - - handle_lure(self->mOtherParticipantUUID); -} // static void LLFloaterIMPanel::onClickProfile( void* userdata ) diff --git a/indra/newview/llimpanel.h b/indra/newview/llimpanel.h index f780bcb2bb0f44cfaedfe7f6261e9c3fb7b3dd4d..dbe09fb396f7e80d09374635058cf63a75e4286f 100644 --- a/indra/newview/llimpanel.h +++ b/indra/newview/llimpanel.h @@ -187,7 +187,6 @@ class LLFloaterIMPanel : public LLFloater static void onClickProfile( void* userdata ); static void onClickGroupInfo( void* userdata ); - static void onClickOfferTeleport( void* userdata ); static void onClickClose( void* userdata ); static void onClickStartCall( void* userdata ); static void onClickEndCall( void* userdata );