aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llviewerinventory.h
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:44:58 -0500
committerJacek Antonelli2008-08-15 23:44:58 -0500
commit089fc07d207c71ce1401e72f09c31ad8c45872e2 (patch)
tree0028955add042c6f45b47a7b774adeeac9c592cb /linden/indra/newview/llviewerinventory.h
parentSecond Life viewer sources 1.16.0.5 (diff)
downloadmeta-impy-089fc07d207c71ce1401e72f09c31ad8c45872e2.zip
meta-impy-089fc07d207c71ce1401e72f09c31ad8c45872e2.tar.gz
meta-impy-089fc07d207c71ce1401e72f09c31ad8c45872e2.tar.bz2
meta-impy-089fc07d207c71ce1401e72f09c31ad8c45872e2.tar.xz
Second Life viewer sources 1.17.0.12
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};