aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llpanelinventory.h
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/newview/llpanelinventory.h')
-rw-r--r--linden/indra/newview/llpanelinventory.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/linden/indra/newview/llpanelinventory.h b/linden/indra/newview/llpanelinventory.h
index 9315ccd..d848300 100644
--- a/linden/indra/newview/llpanelinventory.h
+++ b/linden/indra/newview/llpanelinventory.h
@@ -60,8 +60,8 @@ class LLFolderViewEventListener;
60// Utility function to hide all entries except those in the list 60// Utility function to hide all entries except those in the list
61class LLMenuGL; 61class LLMenuGL;
62void hideContextEntries(LLMenuGL& menu, 62void hideContextEntries(LLMenuGL& menu,
63 const std::vector<LLString> &entries_to_show, 63 const std::vector<std::string> &entries_to_show,
64 const std::vector<LLString> &disabled_entries); 64 const std::vector<std::string> &disabled_entries);
65 65
66class LLPanelInventory : public LLPanel, public LLVOInventoryListener 66class LLPanelInventory : public LLPanel, public LLVOInventoryListener
67{ 67{
@@ -89,7 +89,7 @@ protected:
89 void clearContents(); 89 void clearContents();
90 90
91public: 91public:
92 LLPanelInventory(const LLString& name, const LLRect& rect); 92 LLPanelInventory(const std::string& name, const LLRect& rect);
93 virtual ~LLPanelInventory(); 93 virtual ~LLPanelInventory();
94 94
95 void refresh(); 95 void refresh();
@@ -101,7 +101,7 @@ public:
101 101
102 virtual void draw(); 102 virtual void draw();
103 virtual void deleteAllChildren(); 103 virtual void deleteAllChildren();
104 virtual BOOL handleDragAndDrop(S32 x, S32 y, MASK mask, BOOL drop, EDragAndDropType cargo_type, void *cargo_data, EAcceptance *accept, LLString& tooltip_msg); 104 virtual BOOL handleDragAndDrop(S32 x, S32 y, MASK mask, BOOL drop, EDragAndDropType cargo_type, void *cargo_data, EAcceptance *accept, std::string& tooltip_msg);
105 105
106 static void idle(void* user_data); 106 static void idle(void* user_data);
107}; 107};