about summary refs log tree commit diff stats
path: root/src/config/account.h
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2016-01-22 01:06:28 +0000
committerJames Booth <boothj5@gmail.com>2016-01-22 01:06:28 +0000
commit53fc89f71120a7ceba494cb1eed18667c24d1775 (patch)
tree5564e45185ba286f8ae5860bdf84145fbb2e4b3c /src/config/account.h
parent72bbb5c2b9953237c39c4003cabb95ad420afe64 (diff)
downloadprofani-tty-53fc89f71120a7ceba494cb1eed18667c24d1775.tar.gz
Added account theme property
Diffstat (limited to 'src/config/account.h')
-rw-r--r--src/config/account.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/config/account.h b/src/config/account.h
index 2d45bdbd..a160c3b5 100644
--- a/src/config/account.h
+++ b/src/config/account.h
@@ -61,6 +61,7 @@ typedef struct prof_account_t {
     GList *otr_always;
     gchar *pgp_keyid;
     gchar *startscript;
+    gchar *theme;
     gchar *tls_policy;
 } ProfAccount;
 
@@ -72,7 +73,7 @@ ProfAccount* account_new(const gchar *const name, const gchar *const jid,
     const gchar *const muc_service, const gchar *const muc_nick,
     const gchar *const otr_policy, GList *otr_manual, GList *otr_opportunistic,
     GList *otr_always, const gchar *const pgp_keyid, const char *const startscript,
-    gchar *tls_policy);
+    const char *const theme, gchar *tls_policy);
 char* account_create_full_jid(ProfAccount *account);
 gboolean account_eval_password(ProfAccount *account);
 void account_free(ProfAccount *account);