summaryrefslogtreecommitdiff
path: root/indra/llui/llflatlistview.h
diff options
context:
space:
mode:
authorRye Cogtail <rye@lindenlab.com>2024-10-03 03:23:29 -0400
committerRye Cogtail <rye@lindenlab.com>2024-10-03 03:23:29 -0400
commit6181a79170bce2987c1d98ec69ab7d69d4c7f138 (patch)
tree6be9403c60fd0e268da2017712488e7ed23de3cd /indra/llui/llflatlistview.h
parente8e258be1f1dcd25f7c2fa7f01836050c9bd80fc (diff)
Fix LLFlatListView::getRequiredRect not overriding base class warning
Diffstat (limited to 'indra/llui/llflatlistview.h')
-rw-r--r--indra/llui/llflatlistview.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llflatlistview.h b/indra/llui/llflatlistview.h
index 3c40f91ab0..112c330a15 100644
--- a/indra/llui/llflatlistview.h
+++ b/indra/llui/llflatlistview.h
@@ -126,7 +126,7 @@ public:
/** Returns full rect of child panel */
const LLRect& getItemsRect() const;
- LLRect getRequiredRect() const { return getItemsRect(); }
+ LLRect getRequiredRect() { return getItemsRect(); }
/** Returns distance between items */
const S32 getItemsPad() const { return mItemPad; }