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>
///