diff options
author | Jacek Antonelli | 2008-08-15 23:44:54 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:44:54 -0500 |
commit | b2afb8800bb033a04bb3ecdf0363068d56648ef1 (patch) | |
tree | 3568129b5bbddb47cd39d622b4137a8fbff4abaf /linden/indra/newview/llinventorybridge.h | |
parent | Second Life viewer sources 1.14.0.1 (diff) | |
download | meta-impy-b2afb8800bb033a04bb3ecdf0363068d56648ef1.zip meta-impy-b2afb8800bb033a04bb3ecdf0363068d56648ef1.tar.gz meta-impy-b2afb8800bb033a04bb3ecdf0363068d56648ef1.tar.bz2 meta-impy-b2afb8800bb033a04bb3ecdf0363068d56648ef1.tar.xz |
Second Life viewer sources 1.15.0.2
Diffstat (limited to '')
-rwxr-xr-x | linden/indra/newview/llinventorybridge.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/linden/indra/newview/llinventorybridge.h b/linden/indra/newview/llinventorybridge.h index 2d2288f..1269fa2 100755 --- a/linden/indra/newview/llinventorybridge.h +++ b/linden/indra/newview/llinventorybridge.h | |||
@@ -4,6 +4,7 @@ | |||
4 | * | 4 | * |
5 | * Copyright (c) 2001-2007, Linden Research, Inc. | 5 | * Copyright (c) 2001-2007, Linden Research, Inc. |
6 | * | 6 | * |
7 | * Second Life Viewer Source Code | ||
7 | * The source code in this file ("Source Code") is provided by Linden Lab | 8 | * The source code in this file ("Source Code") is provided by Linden Lab |
8 | * to you under the terms of the GNU General Public License, version 2.0 | 9 | * to you under the terms of the GNU General Public License, version 2.0 |
9 | * ("GPL"), unless you have obtained a separate licensing agreement | 10 | * ("GPL"), unless you have obtained a separate licensing agreement |
@@ -41,6 +42,7 @@ enum EInventoryIcon | |||
41 | SCRIPT_ICON_NAME, | 42 | SCRIPT_ICON_NAME, |
42 | CLOTHING_ICON_NAME, | 43 | CLOTHING_ICON_NAME, |
43 | OBJECT_ICON_NAME, | 44 | OBJECT_ICON_NAME, |
45 | OBJECT_MULTI_ICON_NAME, | ||
44 | NOTECARD_ICON_NAME, | 46 | NOTECARD_ICON_NAME, |
45 | BODYPART_ICON_NAME, | 47 | BODYPART_ICON_NAME, |
46 | SNAPSHOT_ICON_NAME, | 48 | SNAPSHOT_ICON_NAME, |
@@ -314,7 +316,6 @@ protected: | |||
314 | 316 | ||
315 | BOOL checkFolderForContentsOfType(LLInventoryModel* model, LLInventoryCollectFunctor& typeToCheck); | 317 | BOOL checkFolderForContentsOfType(LLInventoryModel* model, LLInventoryCollectFunctor& typeToCheck); |
316 | 318 | ||
317 | void beginIMSession(BOOL only_online); | ||
318 | void modifyOutfit(BOOL append); | 319 | void modifyOutfit(BOOL append); |
319 | public: | 320 | public: |
320 | static LLFolderBridge* sSelf; | 321 | static LLFolderBridge* sSelf; |
@@ -528,6 +529,8 @@ protected: | |||
528 | LLItemBridge(inventory, uuid), mInvType(type) | 529 | LLItemBridge(inventory, uuid), mInvType(type) |
529 | { | 530 | { |
530 | mAttachPt = (flags & 0xff); // low bye of inventory flags | 531 | mAttachPt = (flags & 0xff); // low bye of inventory flags |
532 | |||
533 | mIsMultiObject = ( flags & LLInventoryItem::II_FLAGS_OBJECT_HAS_MULTIPLE_ITEMS ) ? TRUE: FALSE; | ||
531 | } | 534 | } |
532 | 535 | ||
533 | protected: | 536 | protected: |
@@ -535,7 +538,7 @@ protected: | |||
535 | static LLUUID sContextMenuItemID; // Only valid while the context menu is open. | 538 | static LLUUID sContextMenuItemID; // Only valid while the context menu is open. |
536 | LLInventoryType::EType mInvType; | 539 | LLInventoryType::EType mInvType; |
537 | U32 mAttachPt; | 540 | U32 mAttachPt; |
538 | 541 | BOOL mIsMultiObject; | |
539 | }; | 542 | }; |
540 | 543 | ||
541 | 544 | ||