aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/TaskInventoryItem.cs
diff options
context:
space:
mode:
authorMelanie2010-05-03 01:40:24 +0100
committerMelanie2010-05-03 01:40:24 +0100
commit9f8acbfe3e6206893822bc3b7edbadbd7cae7a16 (patch)
treedd9485b0c6b4cbfa0399501f43d7d70d4ed438aa /OpenSim/Framework/TaskInventoryItem.cs
parentMake the IUserAccountData properly unpack the god mode data, so grid gods (diff)
parentMerge branch 'master' of melanie@opensimulator.org:/var/git/opensim (diff)
downloadopensim-SC-9f8acbfe3e6206893822bc3b7edbadbd7cae7a16.zip
opensim-SC-9f8acbfe3e6206893822bc3b7edbadbd7cae7a16.tar.gz
opensim-SC-9f8acbfe3e6206893822bc3b7edbadbd7cae7a16.tar.bz2
opensim-SC-9f8acbfe3e6206893822bc3b7edbadbd7cae7a16.tar.xz
Merge branch 'master' into careminster-presence-refactor
Diffstat (limited to 'OpenSim/Framework/TaskInventoryItem.cs')
-rw-r--r--OpenSim/Framework/TaskInventoryItem.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/OpenSim/Framework/TaskInventoryItem.cs b/OpenSim/Framework/TaskInventoryItem.cs
index 2b0096b..2cb7895 100644
--- a/OpenSim/Framework/TaskInventoryItem.cs
+++ b/OpenSim/Framework/TaskInventoryItem.cs
@@ -122,6 +122,8 @@ namespace OpenSim.Framework
122 private int _type = 0; 122 private int _type = 0;
123 private UUID _oldID; 123 private UUID _oldID;
124 124
125 private bool _ownerChanged = false;
126
125 public UUID AssetID { 127 public UUID AssetID {
126 get { 128 get {
127 return _assetID; 129 return _assetID;
@@ -320,6 +322,15 @@ namespace OpenSim.Framework
320 } 322 }
321 } 323 }
322 324
325 public bool OwnerChanged {
326 get {
327 return _ownerChanged;
328 }
329 set {
330 _ownerChanged = value;
331 }
332 }
333
323 // See ICloneable 334 // See ICloneable
324 335
325 #region ICloneable Members 336 #region ICloneable Members