summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorPaul ProductEngine <pguslisty@productengine.com>2011-09-26 19:38:12 +0300
committerPaul ProductEngine <pguslisty@productengine.com>2011-09-26 19:38:12 +0300
commitb72c8df1f6aac0932ae587a6a94fd87db5007366 (patch)
tree154d72e9986a13c3bc52346f0887cd66dbeedd1c /indra
parent0cd1988ef7f6f0b0330938fc44c7e35004114609 (diff)
Fixed Linux TeamCity build
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llfloatersidepanelcontainer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfloatersidepanelcontainer.cpp b/indra/newview/llfloatersidepanelcontainer.cpp
index cff46e80eb..cf66fd1792 100644
--- a/indra/newview/llfloatersidepanelcontainer.cpp
+++ b/indra/newview/llfloatersidepanelcontainer.cpp
@@ -69,7 +69,7 @@ LLPanel* LLFloaterSidePanelContainer::openChildPanel(const std::string& panel_na
panel = container->getCurrentPanel();
}
- else if (panel = dynamic_cast<LLPanel*>(view))
+ else if ((panel = dynamic_cast<LLPanel*>(view)) != NULL)
{
panel->onOpen(params);
}