summaryrefslogtreecommitdiff
path: root/indra/newview/llfloaterimcontainer.cpp
diff options
context:
space:
mode:
authorMerov Linden <merov@lindenlab.com>2013-03-25 23:01:36 -0700
committerMerov Linden <merov@lindenlab.com>2013-03-25 23:01:36 -0700
commit5f89fe0b617d5df6d22b58ae7818b80c0eddcf7d (patch)
tree458ba1249c56ee66ad26b6e56a7020efb08c2d9d /indra/newview/llfloaterimcontainer.cpp
parent0af5b073e0557a4918d4094841c3a045a8c71ba9 (diff)
CHUI-892 : Fixed. restoreFloater() called when floater docked
Diffstat (limited to 'indra/newview/llfloaterimcontainer.cpp')
-rw-r--r--indra/newview/llfloaterimcontainer.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/llfloaterimcontainer.cpp b/indra/newview/llfloaterimcontainer.cpp
index 0cda1f79b3..7296ec3ced 100644
--- a/indra/newview/llfloaterimcontainer.cpp
+++ b/indra/newview/llfloaterimcontainer.cpp
@@ -1337,7 +1337,10 @@ void LLFloaterIMContainer::showConversation(const LLUUID& session_id)
selectConversationPair(session_id, true);
LLFloaterIMSessionTab* session_floater = LLFloaterIMSessionTab::findConversation(session_id);
- session_floater->restoreFloater();
+ if (session_floater)
+ {
+ session_floater->restoreFloater();
+ }
}
void LLFloaterIMContainer::clearAllFlashStates()