update libomv and consequent changes

This commit is contained in:
UbitUmarov
2020-10-04 21:10:42 +01:00
parent 4e6240f982
commit 5e86c33c9d
10 changed files with 99 additions and 90 deletions

View File

@@ -162,19 +162,19 @@ namespace OpenSim.Framework
/// <value>
/// The description of the inventory item (must be less than 64 characters)
/// </value>
public osUTF8 UTF8Description;
public string Description
{
get
{
return m_description;
return UTF8Description.ToString();
}
set
{
m_description = value;
UTF8Description = new osUTF8(value);
}
}
protected string m_description = String.Empty;
/// <value>
///

View File

@@ -37,12 +37,13 @@ namespace OpenSim.Framework
/// <summary>
/// The name of the node (64 characters or less)
/// </summary>
public virtual string Name
{
get { return m_name; }
set { m_name = value; }
get { return UTF8Name.ToString(); }
set { UTF8Name = new osUTF8(value); }
}
private string m_name = string.Empty;
public osUTF8 UTF8Name;
/// <summary>
/// A UUID containing the ID for the inventory node itself