Wed, 23 May 2007 03:59:19 +0000
Fix file transfers aborting and mistakenly being marked as cancelled when they are actually complete. Fixes #814
|
15940
53d1e0af8279
Gaim -> Purple rename for the Mono plugin. These changes make sense, and it
Richard Laager <rlaager@pidgin.im>
parents:
15435
diff
changeset
|
1 | namespace Purple { |
|
15055
dc3454f0f1e3
[gaim-migrate @ 17772]
Gary Kramlich <grim@reaperworld.com>
parents:
14254
diff
changeset
|
2 | public class Buddy : BlistNode { |
| 11660 | 3 | private string name; |
| 4 | private string alias; | |
|
15055
dc3454f0f1e3
[gaim-migrate @ 17772]
Gary Kramlich <grim@reaperworld.com>
parents:
14254
diff
changeset
|
5 | |
| 11660 | 6 | public string Name { get { return name; } set { name = value; } } |
| 7 | public string Alias { get { return alias; } set { alias = value; } } | |
| 8 | } | |
| 9 | } |