We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ff70a9 commit 2c7f57bCopy full SHA for 2c7f57b
indra/newview/llfloateruipreview.cpp
@@ -701,13 +701,9 @@ void LLFloaterUIPreview::refreshList()
701
// Note: no deduplification (shouldn't be necessary)
702
void LLFloaterUIPreview::addFloaterEntry(const std::string& path)
703
{
704
- LLUUID* entry_id = new LLUUID(); // create a new UUID
705
- entry_id->generate(path);
706
- const LLUUID& entry_id_ref = *entry_id; // get a reference to the UUID for the LLSD block
707
-
708
// fill LLSD column entry: initialize row/col structure
709
LLSD row;
710
- row["id"] = entry_id_ref;
+ row["id"] = LLUUID::generateNewID(path); // create a new UUID;
711
LLSD& columns = row["columns"];
712
713
// Get name of floater:
0 commit comments