Mercurial > pidgin
view libpurple/plugins/mono/api/Status.cs @ 31153:2b63df6e495c
vvconfig: Don't crash when the stored device isn't found in the list of
available devices. Fixes #13238.
committer: John Bailey <rekkanoryo@rekkanoryo.org>
| author | jakub.adam@ktknet.cz |
|---|---|
| date | Sat, 22 Jan 2011 08:42: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; } } } }
