Remove final parameter from LLScrollListCtrl::addStringUUIDItem, it was unused.
This commit is contained in:
@@ -1337,7 +1337,7 @@ const std::string LLScrollListCtrl::getSelectedItemLabel(S32 column) const
|
||||
// "StringUUID" interface: use this when you're creating a list that contains non-unique strings each of which
|
||||
// has an associated, unique UUID, and only one of which can be selected at a time.
|
||||
|
||||
LLScrollListItem* LLScrollListCtrl::addStringUUIDItem(const std::string& item_text, const LLUUID& id, EAddPosition pos, BOOL enabled, S32 column_width)
|
||||
LLScrollListItem* LLScrollListCtrl::addStringUUIDItem(const std::string& item_text, const LLUUID& id, EAddPosition pos, BOOL enabled)
|
||||
{
|
||||
LLScrollListItem* item = NULL;
|
||||
if (getItemCount() < mMaxItemCount)
|
||||
|
||||
@@ -189,7 +189,7 @@ public:
|
||||
// DEPRECATED: Use LLSD versions of addCommentText() and getSelectedValue().
|
||||
// "StringUUID" interface: use this when you're creating a list that contains non-unique strings each of which
|
||||
// has an associated, unique UUID, and only one of which can be selected at a time.
|
||||
LLScrollListItem* addStringUUIDItem(const std::string& item_text, const LLUUID& id, EAddPosition pos = ADD_BOTTOM, BOOL enabled = TRUE, S32 column_width = 0);
|
||||
LLScrollListItem* addStringUUIDItem(const std::string& item_text, const LLUUID& id, EAddPosition pos = ADD_BOTTOM, BOOL enabled = TRUE);
|
||||
LLUUID getStringUUIDSelectedItem() const;
|
||||
|
||||
LLScrollListItem* getFirstSelected() const;
|
||||
|
||||
Reference in New Issue
Block a user