diff options
Diffstat (limited to 'linden/indra/newview/llinventorybridge.h')
-rw-r--r-- | linden/indra/newview/llinventorybridge.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/linden/indra/newview/llinventorybridge.h b/linden/indra/newview/llinventorybridge.h index fc04b28..329e57f 100644 --- a/linden/indra/newview/llinventorybridge.h +++ b/linden/indra/newview/llinventorybridge.h | |||
@@ -192,7 +192,15 @@ public: | |||
192 | virtual BOOL dragOrDrop(MASK mask, BOOL drop, | 192 | virtual BOOL dragOrDrop(MASK mask, BOOL drop, |
193 | EDragAndDropType cargo_type, | 193 | EDragAndDropType cargo_type, |
194 | void* cargo_data) { return FALSE; } | 194 | void* cargo_data) { return FALSE; } |
195 | virtual LLInventoryType::EType getInventoryType() const { return mInvType; } | 195 | |
196 | virtual LLInventoryType::EType getInventoryType() const | ||
197 | { | ||
198 | return mInvType; | ||
199 | } | ||
200 | virtual LLInventoryType::NType getNInventoryType() const | ||
201 | { | ||
202 | return mNInvType; | ||
203 | } | ||
196 | 204 | ||
197 | // LLInvFVBridge functionality | 205 | // LLInvFVBridge functionality |
198 | virtual void clearDisplayName() {} | 206 | virtual void clearDisplayName() {} |
@@ -221,6 +229,7 @@ protected: | |||
221 | LLInventoryPanel* mInventoryPanel; | 229 | LLInventoryPanel* mInventoryPanel; |
222 | LLUUID mUUID; // item id | 230 | LLUUID mUUID; // item id |
223 | LLInventoryType::EType mInvType; | 231 | LLInventoryType::EType mInvType; |
232 | LLInventoryType::NType mNInvType; | ||
224 | }; | 233 | }; |
225 | 234 | ||
226 | 235 | ||