summaryrefslogtreecommitdiff
path: root/indra/llui/llflatlistview.cpp
diff options
context:
space:
mode:
authorTofu Linden <tofu.linden@lindenlab.com>2010-01-06 07:21:30 -0800
committerTofu Linden <tofu.linden@lindenlab.com>2010-01-06 07:21:30 -0800
commitfdbf7c8d132333b4a841615f4bc08be007729f4b (patch)
tree62fdd8e4c1e9ba549cc10b54bc13e791654214c3 /indra/llui/llflatlistview.cpp
parent71e934215902690b92cd73f2930391e692ec8ae9 (diff)
parentaf61dd45b3afe8b62dceeb55a2ded7a9cfa34117 (diff)
merge.
Diffstat (limited to 'indra/llui/llflatlistview.cpp')
-rw-r--r--indra/llui/llflatlistview.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llui/llflatlistview.cpp b/indra/llui/llflatlistview.cpp
index 3754d155cf..9cfc67af14 100644
--- a/indra/llui/llflatlistview.cpp
+++ b/indra/llui/llflatlistview.cpp
@@ -906,7 +906,8 @@ void LLFlatListView::notifyParentItemsRectChanged()
params["width"] = req_rect.getWidth();
params["height"] = req_rect.getHeight();
- getParent()->notifyParent(params);
+ if (getParent()) // dummy widgets don't have a parent
+ getParent()->notifyParent(params);
}
void LLFlatListView::setNoItemsCommentVisible(bool visible) const