Mercurial > pidgin
annotate libgaim/plugins/mono/api/Buddy.cs @ 15151:d1014e749b4e
[gaim-migrate @ 17937]
Pass the password for the account, if one has been specified, to gaim_connection_new() when doing an account registration request. This allows autofilling of the password field if a subsequent dialogue is displayed (as with Jabber).
committer: Tailor Script <tailor@pidgin.im>
| author | Evan Schoenberg <evan.s@dreskin.net> |
|---|---|
| date | Sun, 10 Dec 2006 05:55:02 +0000 |
| parents | 58849b67f00d |
| children |
| rev | line source |
|---|---|
|
14993
58849b67f00d
[gaim-migrate @ 17772]
Gary Kramlich <grim@reaperworld.com>
parents:
14192
diff
changeset
|
1 namespace Gaim { |
|
58849b67f00d
[gaim-migrate @ 17772]
Gary Kramlich <grim@reaperworld.com>
parents:
14192
diff
changeset
|
2 public class Buddy : BlistNode { |
| 14192 | 3 private string name; |
| 4 private string alias; | |
|
14993
58849b67f00d
[gaim-migrate @ 17772]
Gary Kramlich <grim@reaperworld.com>
parents:
14192
diff
changeset
|
5 |
| 14192 | 6 public string Name { get { return name; } set { name = value; } } |
| 7 public string Alias { get { return alias; } set { alias = value; } } | |
| 8 } | |
| 9 } |
