[Opensim] Add suitcase stuff, thanks Cinder!

Conflicts:
	indra/llinventory/llfoldertype.cpp
	indra/llinventory/llfoldertype.h
	indra/newview/llviewerfoldertype.cpp
This commit is contained in:
Inusaito Sayori
2015-08-07 17:18:19 -04:00
parent 773a2a3855
commit 9c06d76b1e
3 changed files with 7 additions and 1 deletions

View File

@@ -102,6 +102,8 @@ LLFolderDictionary::LLFolderDictionary()
addEntry(LLFolderType::FT_INBOX, new FolderEntry("inbox", TRUE));
addEntry(LLFolderType::FT_OUTBOX, new FolderEntry("outbox", TRUE));
addEntry(LLFolderType::FT_BASIC_ROOT, new FolderEntry("basic_rt", TRUE));
addEntry(LLFolderType::FT_SUITCASE, new FolderEntry("suitcase", FALSE));
addEntry(LLFolderType::FT_NONE, new FolderEntry("-1", FALSE));
};

View File

@@ -94,6 +94,8 @@ public:
FT_BASIC_ROOT = 52,
FT_SUITCASE = 100,
FT_COUNT,
FT_NONE = -1

View File

@@ -136,7 +136,9 @@ LLViewerFolderDictionary::LLViewerFolderDictionary()
addEntry(LLFolderType::FT_OUTBOX, new ViewerFolderEntry("Merchant Outbox", "inv_folder_outbox.tga", "inv_folder_outbox.tga", FALSE, false));
addEntry(LLFolderType::FT_BASIC_ROOT, new ViewerFolderEntry("Basic Root", "inv_folder_plain_open.tga", "inv_folder_plain_closed.tga", FALSE, false));
addEntry(LLFolderType::FT_SUITCASE, new ViewerFolderEntry("My Suitcase", "inv_folder_plain_open.tga", "inv_folder_plain_closed.tga", FALSE, false));
addEntry(LLFolderType::FT_NONE, new ViewerFolderEntry("New Folder", "inv_folder_plain_open.tga", "inv_folder_plain_closed.tga", FALSE, false, "default"));
#if SUPPORT_ENSEMBLES