aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llviewerinventory.h
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/newview/llviewerinventory.h')
-rw-r--r--linden/indra/newview/llviewerinventory.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/linden/indra/newview/llviewerinventory.h b/linden/indra/newview/llviewerinventory.h
index e80a042..b39545b 100644
--- a/linden/indra/newview/llviewerinventory.h
+++ b/linden/indra/newview/llviewerinventory.h
@@ -58,18 +58,18 @@ public:
58 const LLUUID& asset_uuid, 58 const LLUUID& asset_uuid,
59 LLAssetType::EType type, 59 LLAssetType::EType type,
60 LLInventoryType::EType inv_type, 60 LLInventoryType::EType inv_type,
61 const LLString& name, 61 const std::string& name,
62 const LLString& desc, 62 const std::string& desc,
63 const LLSaleInfo& sale_info, 63 const LLSaleInfo& sale_info,
64 U32 flags, 64 U32 flags,
65 S32 creation_date_utc); 65 time_t creation_date_utc);
66 66
67 // construct a viewer inventory item which has the minimal amount 67 // construct a viewer inventory item which has the minimal amount
68 // of information to use in the UI. 68 // of information to use in the UI.
69 LLViewerInventoryItem( 69 LLViewerInventoryItem(
70 const LLUUID& item_id, 70 const LLUUID& item_id,
71 const LLUUID& parent_id, 71 const LLUUID& parent_id,
72 const char* name, 72 const std::string& name,
73 LLInventoryType::EType inv_type); 73 LLInventoryType::EType inv_type);
74 74
75 // construct an invalid and incomplete viewer inventory item. 75 // construct an invalid and incomplete viewer inventory item.
@@ -149,7 +149,7 @@ protected:
149public: 149public:
150 LLViewerInventoryCategory(const LLUUID& uuid, const LLUUID& parent_uuid, 150 LLViewerInventoryCategory(const LLUUID& uuid, const LLUUID& parent_uuid,
151 LLAssetType::EType preferred_type, 151 LLAssetType::EType preferred_type,
152 const LLString& name, 152 const std::string& name,
153 const LLUUID& owner_id); 153 const LLUUID& owner_id);
154 LLViewerInventoryCategory(const LLUUID& owner_id); 154 LLViewerInventoryCategory(const LLUUID& owner_id);
155 // Create a copy of an inventory category from a pointer to another category 155 // Create a copy of an inventory category from a pointer to another category
@@ -161,7 +161,6 @@ public:
161 virtual void removeFromServer(); 161 virtual void removeFromServer();
162 virtual void updateParentOnServer(BOOL restamp_children) const; 162 virtual void updateParentOnServer(BOOL restamp_children) const;
163 virtual void updateServer(BOOL is_new) const; 163 virtual void updateServer(BOOL is_new) const;
164 //virtual BOOL unpackMessage(LLMessageSystem* msg, const char* block, S32 block_num = 0);
165 164
166 const LLUUID& getOwnerID() const { return mOwnerID; } 165 const LLUUID& getOwnerID() const { return mOwnerID; }
167 166