diff options
author | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2009-01-23 10:28:58 +0000 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2009-01-23 10:28:58 +0000 |
commit | 993f424e2665dd3afb9824d7a89aa69bcb89c053 (patch) | |
tree | 6c875f84d2338ac3214397d79d7987609b0d23d3 /src/empathy-import-dialog.h | |
parent | e76f3a0ade6c9d8b23fb64dedb71d403dc15d516 (diff) |
Add a source field to specify the name of the account source. (Stephane Wirtel)
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
svn path=/trunk/; revision=2245
Diffstat (limited to 'src/empathy-import-dialog.h')
-rw-r--r-- | src/empathy-import-dialog.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/empathy-import-dialog.h b/src/empathy-import-dialog.h index 68fd6e17a..1d616e387 100644 --- a/src/empathy-import-dialog.h +++ b/src/empathy-import-dialog.h @@ -32,9 +32,11 @@ typedef struct GHashTable *settings; /* The profile to use for this account */ McProfile *profile; + /* The name of the account import source */ + gchar *source; } EmpathyImportAccountData; -EmpathyImportAccountData *empathy_import_account_data_new (void); +EmpathyImportAccountData *empathy_import_account_data_new (const gchar *source); void empathy_import_account_data_free (EmpathyImportAccountData *data); void empathy_import_dialog_show (GtkWindow *parent, gboolean warning); |