Skip to content
Snippets Groups Projects
Commit 4bb8b25b authored by Richard Linden's avatar Richard Linden
Browse files

merge

parents 019eae66 e733d5c0
No related branches found
No related tags found
No related merge requests found
...@@ -94,6 +94,7 @@ LLFolderDictionary::LLFolderDictionary() ...@@ -94,6 +94,7 @@ LLFolderDictionary::LLFolderDictionary()
addEntry(LLFolderType::FT_INBOX, new FolderEntry("inbox", TRUE)); addEntry(LLFolderType::FT_INBOX, new FolderEntry("inbox", TRUE));
addEntry(LLFolderType::FT_OUTBOX, new FolderEntry("outbox", TRUE)); addEntry(LLFolderType::FT_OUTBOX, new FolderEntry("outbox", TRUE));
addEntry(LLFolderType::FT_BASIC_ROOT, new FolderEntry("basic_root", TRUE));
addEntry(LLFolderType::FT_NONE, new FolderEntry("-1", FALSE)); addEntry(LLFolderType::FT_NONE, new FolderEntry("-1", FALSE));
}; };
......
...@@ -85,6 +85,8 @@ class LL_COMMON_API LLFolderType ...@@ -85,6 +85,8 @@ class LL_COMMON_API LLFolderType
FT_INBOX = 50, FT_INBOX = 50,
FT_OUTBOX = 51, FT_OUTBOX = 51,
FT_BASIC_ROOT = 52,
FT_COUNT, FT_COUNT,
FT_NONE = -1 FT_NONE = -1
......
...@@ -132,10 +132,12 @@ LLViewerFolderDictionary::LLViewerFolderDictionary() ...@@ -132,10 +132,12 @@ LLViewerFolderDictionary::LLViewerFolderDictionary()
addEntry(LLFolderType::FT_MY_OUTFITS, new ViewerFolderEntry("My Outfits", "Inv_SysOpen", "Inv_SysClosed", TRUE)); addEntry(LLFolderType::FT_MY_OUTFITS, new ViewerFolderEntry("My Outfits", "Inv_SysOpen", "Inv_SysClosed", TRUE));
addEntry(LLFolderType::FT_MESH, new ViewerFolderEntry("Meshes", "Inv_SysOpen", "Inv_SysClosed", FALSE)); addEntry(LLFolderType::FT_MESH, new ViewerFolderEntry("Meshes", "Inv_SysOpen", "Inv_SysClosed", FALSE));
addEntry(LLFolderType::FT_INBOX, new ViewerFolderEntry("Inbox", "Inv_SysOpen", "Inv_SysClosed", FALSE, true)); addEntry(LLFolderType::FT_INBOX, new ViewerFolderEntry("Inbox", "Inv_SysOpen", "Inv_SysClosed", FALSE));
addEntry(LLFolderType::FT_OUTBOX, new ViewerFolderEntry("Outbox", "Inv_SysOpen", "Inv_SysClosed", FALSE, true)); addEntry(LLFolderType::FT_OUTBOX, new ViewerFolderEntry("Outbox", "Inv_SysOpen", "Inv_SysClosed", FALSE));
addEntry(LLFolderType::FT_BASIC_ROOT, new ViewerFolderEntry("Basic Root", "Inv_SysOpen", "Inv_SysClosed", FALSE));
addEntry(LLFolderType::FT_NONE, new ViewerFolderEntry("New Folder", "Inv_FolderOpen", "Inv_FolderClosed", FALSE, false, "default")); addEntry(LLFolderType::FT_NONE, new ViewerFolderEntry("New Folder", "Inv_FolderOpen", "Inv_FolderClosed", FALSE, "default"));
#if SUPPORT_ENSEMBLES #if SUPPORT_ENSEMBLES
initEnsemblesFromFile(); initEnsemblesFromFile();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment