diff options
| author | Nat Goodspeed <nat@lindenlab.com> | 2015-07-01 11:02:56 -0400 | 
|---|---|---|
| committer | Nat Goodspeed <nat@lindenlab.com> | 2015-07-01 11:02:56 -0400 | 
| commit | f25179f148415763e310b0dd7f91a37dcf4c58c0 (patch) | |
| tree | 94348279a9510df8e51e2d18910d9ac9869a555f | |
| parent | eca87bb24f4703ad96f8fe800a4973402f015f32 (diff) | |
MAINT-4952: fix NewResourceUploadInfo member initialization list.
| -rwxr-xr-x | indra/newview/llviewermenufile.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/indra/newview/llviewermenufile.h b/indra/newview/llviewermenufile.h index 76704e8edd..297895cbf0 100755 --- a/indra/newview/llviewermenufile.h +++ b/indra/newview/llviewermenufile.h @@ -60,8 +60,8 @@ public:              mDisplayName(displayName),              mCompressionInfo(compressionInfo),              mNextOwnerPerms(nextOWnerPerms), -            mGroupPerms(mGroupPerms), -            mEveryonePerms(mEveryonePerms), +            mGroupPerms(groupPerms), +            mEveryonePerms(everyonePerms),              mExpectedUploadCost(expectedCost),              mInventoryType(inventoryType),              mDestinationFolderType(destinationType) | 
