view libpurple/plugins/mono/api/Buddy.cs @ 32659:3af16402f176

Add some NULL checks. Now it should not crash even if you don't have the default theme installed (which you won't since it's not even written yet!) You just won't see anything...
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Wed, 21 Sep 2011 07:01:58 +0000
parents 93bfbda79bf6
children
line wrap: on
line source

namespace Purple {
	public class Buddy : BlistNode {
		private string name;
		private string alias;

		public string Name { get { return name; } set { name = value; } }
		public string Alias { get { return alias; } set { alias = value; } }
	}
}