From 7d89e122930be39e84a6d174548fa2d12ac0484a Mon Sep 17 00:00:00 2001 From: Teravus Ovares Date: Sat, 6 Sep 2008 07:52:41 +0000 Subject: * This is the fabled LibOMV update with all of the libOMV types from JHurliman * This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke. --- OpenSim/Framework/InventoryFolderBase.cs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'OpenSim/Framework/InventoryFolderBase.cs') diff --git a/OpenSim/Framework/InventoryFolderBase.cs b/OpenSim/Framework/InventoryFolderBase.cs index 9c3c116..e55f834 100644 --- a/OpenSim/Framework/InventoryFolderBase.cs +++ b/OpenSim/Framework/InventoryFolderBase.cs @@ -25,7 +25,7 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -using libsecondlife; +using OpenMetaverse; namespace OpenSim.Framework { @@ -37,7 +37,7 @@ namespace OpenSim.Framework /// /// The UUID for this folder /// - private LLUUID _id; + private UUID _id; /// /// The name of the folder (64 characters or less) @@ -47,12 +47,12 @@ namespace OpenSim.Framework /// /// The agent who's inventory this is contained by /// - private LLUUID _owner; + private UUID _owner; /// /// The folder this folder is contained in /// - private LLUUID _parentID; + private UUID _parentID; /// /// Type of items normally stored in this folder @@ -72,19 +72,19 @@ namespace OpenSim.Framework set { _name = value; } } - public virtual LLUUID Owner + public virtual UUID Owner { get { return _owner; } set { _owner = value; } } - public virtual LLUUID ParentID + public virtual UUID ParentID { get { return _parentID; } set { _parentID = value; } } - public virtual LLUUID ID + public virtual UUID ID { get { return _id; } set { _id = value; } @@ -102,4 +102,4 @@ namespace OpenSim.Framework set { _version = value; } } } -} \ No newline at end of file +} -- cgit v1.1