diff --git a/indra/llui/lluictrl.h b/indra/llui/lluictrl.h index 0a988c7a7..69841a042 100644 --- a/indra/llui/lluictrl.h +++ b/indra/llui/lluictrl.h @@ -37,11 +37,13 @@ #include "llview.h" #include "llrect.h" #include "llsd.h" +#include +#include #include "llviewmodel.h" // *TODO move dependency to .cpp file class LLUICtrl -: public LLView +: public LLView, public boost::signals2::trackable { public: typedef boost::function commit_callback_t; diff --git a/indra/newview/llfloaterworldmap.cpp b/indra/newview/llfloaterworldmap.cpp index f21bb2902..0cd3906fb 100644 --- a/indra/newview/llfloaterworldmap.cpp +++ b/indra/newview/llfloaterworldmap.cpp @@ -899,12 +899,6 @@ void LLFloaterWorldMap::buildAvatarIDList() list->operateOnSelection(LLCtrlListInterface::OP_DELETE); } - LLSD default_column; - default_column["name"] = "friend name"; - default_column["label"] = "Friend Name"; - default_column["width"] = 500; - list->addColumn(default_column); - // Get all of the calling cards for avatar that are currently online LLCollectMappableBuddies collector; LLAvatarTracker::instance().applyFunctor(collector);