diff options
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/llcommon/metapropertyt.h | 13 | ||||
| -rw-r--r-- | indra/llinventory/llparcel.h | 6 | ||||
| -rw-r--r-- | indra/llinventory/llpermissions.cpp | 2 | 
3 files changed, 18 insertions, 3 deletions
| diff --git a/indra/llcommon/metapropertyt.h b/indra/llcommon/metapropertyt.h index 79a536a224..5ad230d1d5 100644 --- a/indra/llcommon/metapropertyt.h +++ b/indra/llcommon/metapropertyt.h @@ -94,6 +94,13 @@ inline const LLReflective* LLMetaPropertyT<LLUUID>::get(const LLReflective* obje  }  template <> +inline const LLReflective* LLMetaPropertyT<bool>::get(const LLReflective* object) const +{ +	checkObjectClass(object); +	return NULL; +} + +template <>  inline LLSD LLMetaPropertyT<S32>::getLLSD(const LLReflective* object) const  {  	return *(getProperty(object)); @@ -111,6 +118,12 @@ inline LLSD LLMetaPropertyT<LLUUID>::getLLSD(const LLReflective* object) const  	return *(getProperty(object));  } +template <> +inline LLSD LLMetaPropertyT<bool>::getLLSD(const LLReflective* object) const +{ +	return *(getProperty(object)); +} +  template<class TObject, class TProperty>  class LLMetaPropertyTT : public LLMetaPropertyT<TProperty>  { diff --git a/indra/llinventory/llparcel.h b/indra/llinventory/llparcel.h index 40bbb7b2e0..5ba32c0600 100644 --- a/indra/llinventory/llparcel.h +++ b/indra/llinventory/llparcel.h @@ -135,9 +135,9 @@ class LLSD;  class LLAccessEntry  {  public: -	LLUUID		mID; -	S32			mTime; -	U32			mFlags; +	LLUUID		mID;		// Agent ID +	S32			mTime;		// Time (unix seconds) when entry expires +	U32			mFlags;		// Not used - currently should always be zero  };  typedef std::map<LLUUID,LLAccessEntry>::iterator access_map_iterator; diff --git a/indra/llinventory/llpermissions.cpp b/indra/llinventory/llpermissions.cpp index 2a27f3fc8d..e4f8b0dffd 100644 --- a/indra/llinventory/llpermissions.cpp +++ b/indra/llinventory/llpermissions.cpp @@ -954,6 +954,8 @@ void LLMetaClassT<LLPermissions>::reflectProperties(LLMetaClass& meta_class)  {  	reflectProperty(meta_class, "mCreator", &LLPermissions::mCreator);  	reflectProperty(meta_class, "mOwner", &LLPermissions::mOwner); +	reflectProperty(meta_class, "mGroup", &LLPermissions::mGroup); +	reflectProperty(meta_class, "mIsGroupOwned", &LLPermissions::mIsGroupOwned);  }  // virtual | 
