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.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/linden/indra/newview/llviewerinventory.h b/linden/indra/newview/llviewerinventory.h
index c60f0e6..513834f 100644
--- a/linden/indra/newview/llviewerinventory.h
+++ b/linden/indra/newview/llviewerinventory.h
@@ -191,7 +191,6 @@ protected:
191class LLInventoryCallback : public LLRefCount 191class LLInventoryCallback : public LLRefCount
192{ 192{
193public: 193public:
194 virtual ~LLInventoryCallback() {}
195 virtual void fire(const LLUUID& inv_item) = 0; 194 virtual void fire(const LLUUID& inv_item) = 0;
196}; 195};
197 196
@@ -206,8 +205,11 @@ class RezAttachmentCallback : public LLInventoryCallback
206{ 205{
207public: 206public:
208 RezAttachmentCallback(LLViewerJointAttachment *attachmentp); 207 RezAttachmentCallback(LLViewerJointAttachment *attachmentp);
209 ~RezAttachmentCallback();
210 void fire(const LLUUID& inv_item); 208 void fire(const LLUUID& inv_item);
209
210protected:
211 ~RezAttachmentCallback();
212
211private: 213private:
212 LLViewerJointAttachment* mAttach; 214 LLViewerJointAttachment* mAttach;
213}; 215};