summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorSeth ProductEngine <slitovchuk@productengine.com>2012-09-14 00:29:50 +0300
committerSeth ProductEngine <slitovchuk@productengine.com>2012-09-14 00:29:50 +0300
commit386c50d414e6357975cb18814b6bfb048b46b3da (patch)
tree71dbe6db6d8b6bb039a1fd646e4de45a6fce496e /indra
parent74720798abdbc1f2d51df49091731dee79be708f (diff)
CHUI-282 WIP Removed the hack added for CHUI-308 to resize the folder view in conversation list.
Fixed some glitches after automated merge.
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llimfloatercontainer.cpp11
-rw-r--r--indra/newview/llimfloatercontainer.h2
2 files changed, 0 insertions, 13 deletions
diff --git a/indra/newview/llimfloatercontainer.cpp b/indra/newview/llimfloatercontainer.cpp
index 6aa7a2e054..58b788d231 100644
--- a/indra/newview/llimfloatercontainer.cpp
+++ b/indra/newview/llimfloatercontainer.cpp
@@ -80,8 +80,6 @@ LLIMFloaterContainer::~LLIMFloaterContainer()
{
LLIMMgr::getInstance()->removeSessionObserver(this);
}
-
- gIdleCallbacks.deleteFunction(idle, (void*)this);
}
void LLIMFloaterContainer::sessionAdded(const LLUUID& session_id, const std::string& name, const LLUUID& other_participant_id)
@@ -171,8 +169,6 @@ BOOL LLIMFloaterContainer::postBuild()
mConversationsPane->handleReshape(list_size, TRUE);
}
- gIdleCallbacks.addFunction(idle, (void*)this);
-
mInitialized = true;
// Add callback: we'll take care of view updates on idle
@@ -390,13 +386,6 @@ void LLIMFloaterContainer::draw()
}
}
- // CHUI-308 : Hack! We shouldn't have to do that but we have too as long as
- // we don't have a scroll container.
- // *TODO: Take those 3 lines out once we implement the scroll container.
- repositioningWidgets();
- mConversationsRoot->setRect(mConversationsListPanel->getLocalRect());
- mConversationsRoot->setFollowsAll();
-
if (mTabContainer->getTabCount() == 0)
{
// Do not close the container when every conversation is torn off because the user
diff --git a/indra/newview/llimfloatercontainer.h b/indra/newview/llimfloatercontainer.h
index bda1ce0cb1..324adfcc11 100644
--- a/indra/newview/llimfloatercontainer.h
+++ b/indra/newview/llimfloatercontainer.h
@@ -71,8 +71,6 @@ public:
static LLIMFloaterContainer* getInstance();
- static void idle(void* user_data);
-
virtual void setMinimized(BOOL b);
void collapseMessagesPane(bool collapse);