Header file cleanup.
Spelling cleanup. Changed "Inventroy"->"Inventory". Removed a couple of headers from llinventory.h. --HG-- branch : avatar-pipelinemaster
parent
faef48504c
commit
b88778ca7d
|
|
@ -35,7 +35,6 @@
|
|||
|
||||
#include <functional>
|
||||
|
||||
#include "llassetstorage.h"
|
||||
#include "lldarray.h"
|
||||
#include "llfoldertype.h"
|
||||
#include "llinventorytype.h"
|
||||
|
|
@ -45,7 +44,6 @@
|
|||
#include "llsaleinfo.h"
|
||||
#include "llsd.h"
|
||||
#include "lluuid.h"
|
||||
#include "llxmlnode.h"
|
||||
|
||||
// consts for Key field in the task inventory update message
|
||||
extern const U8 TASK_INVENTORY_ITEM_KEY;
|
||||
|
|
@ -357,7 +355,7 @@ protected:
|
|||
|
||||
typedef std::list<LLPointer<LLInventoryObject> > InventoryObjectList;
|
||||
|
||||
// These functions convert between structured data and an inventroy
|
||||
// These functions convert between structured data and an inventory
|
||||
// item, appropriate for serialization.
|
||||
LLSD ll_create_sd_from_inventory_item(LLPointer<LLInventoryItem> item);
|
||||
//LLPointer<LLInventoryItem> ll_create_item_from_sd(const LLSD& sd_item);
|
||||
|
|
|
|||
|
|
@ -97,10 +97,10 @@ BOOL LLLandmarksPanel::postBuild()
|
|||
|
||||
U32 sort_order = gSavedSettings.getU32(LLInventoryPanel::DEFAULT_SORT_ORDER);
|
||||
mSortByDate = sort_order & LLInventoryFilter::SO_DATE;
|
||||
initFavoritesInventroyPanel();
|
||||
initLandmarksInventroyPanel();
|
||||
initMyInventroyPanel();
|
||||
initLibraryInventroyPanel();
|
||||
initFavoritesInventoryPanel();
|
||||
initLandmarksInventoryPanel();
|
||||
initMyInventoryPanel();
|
||||
initLibraryInventoryPanel();
|
||||
getChild<LLAccordionCtrlTab>("tab_favorites")->setDisplayChildren(true);
|
||||
getChild<LLAccordionCtrlTab>("tab_landmarks")->setDisplayChildren(true);
|
||||
|
||||
|
|
@ -357,7 +357,7 @@ void LLLandmarksPanel::setErrorStatus(U32 status, const std::string& reason)
|
|||
// PRIVATE METHODS
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
|
||||
void LLLandmarksPanel::initFavoritesInventroyPanel()
|
||||
void LLLandmarksPanel::initFavoritesInventoryPanel()
|
||||
{
|
||||
mFavoritesInventoryPanel = getChild<LLInventorySubTreePanel>("favorites_list");
|
||||
|
||||
|
|
@ -366,7 +366,7 @@ void LLLandmarksPanel::initFavoritesInventroyPanel()
|
|||
initAccordion("tab_favorites", mFavoritesInventoryPanel);
|
||||
}
|
||||
|
||||
void LLLandmarksPanel::initLandmarksInventroyPanel()
|
||||
void LLLandmarksPanel::initLandmarksInventoryPanel()
|
||||
{
|
||||
mLandmarksInventoryPanel = getChild<LLInventorySubTreePanel>("landmarks_list");
|
||||
|
||||
|
|
@ -380,7 +380,7 @@ void LLLandmarksPanel::initLandmarksInventroyPanel()
|
|||
initAccordion("tab_landmarks", mLandmarksInventoryPanel);
|
||||
}
|
||||
|
||||
void LLLandmarksPanel::initMyInventroyPanel()
|
||||
void LLLandmarksPanel::initMyInventoryPanel()
|
||||
{
|
||||
mMyInventoryPanel= getChild<LLInventorySubTreePanel>("my_inventory_list");
|
||||
|
||||
|
|
@ -389,7 +389,7 @@ void LLLandmarksPanel::initMyInventroyPanel()
|
|||
initAccordion("tab_inventory", mMyInventoryPanel);
|
||||
}
|
||||
|
||||
void LLLandmarksPanel::initLibraryInventroyPanel()
|
||||
void LLLandmarksPanel::initLibraryInventoryPanel()
|
||||
{
|
||||
mLibraryInventoryPanel = getChild<LLInventorySubTreePanel>("library_list");
|
||||
|
||||
|
|
|
|||
|
|
@ -78,10 +78,10 @@ protected:
|
|||
/*virtual*/ void setErrorStatus(U32 status, const std::string& reason);
|
||||
|
||||
private:
|
||||
void initFavoritesInventroyPanel();
|
||||
void initLandmarksInventroyPanel();
|
||||
void initMyInventroyPanel();
|
||||
void initLibraryInventroyPanel();
|
||||
void initFavoritesInventoryPanel();
|
||||
void initLandmarksInventoryPanel();
|
||||
void initMyInventoryPanel();
|
||||
void initLibraryInventoryPanel();
|
||||
void initLandmarksPanel(LLInventorySubTreePanel* inventory_list);
|
||||
void initAccordion(const std::string& accordion_tab_name, LLInventorySubTreePanel* inventory_list);
|
||||
void onAccordionExpandedCollapsed(const LLSD& param, LLInventorySubTreePanel* inventory_list);
|
||||
|
|
|
|||
Loading…
Reference in New Issue