view libpurple/plugins/mono/api/Status.cs @ 31776:eb7dfb01640d

Complete the conversion of win32 utsname construction to bounds-checked access. This patch changes strcat to g_strlcat with appropriate bounds.
author Ethan Blanton <elb@pidgin.im>
date Sun, 17 Jul 2011 20:55:12 +0000
parents 93bfbda79bf6
children
line wrap: on
line source

namespace Purple
{
	public class Status
	{
		private string id;
				
		public string Id { get { return id; } set { id = value; } }
	}
}