aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy-accounts.c
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-02-16 19:45:22 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-02-17 00:43:30 +0800
commitdb8942598423d5dd11ea28cdfb4b2935f1e2a374 (patch)
tree317c4baf1c3cd82ae4ec786b60f2cd3dc3d802a2 /src/empathy-accounts.c
parent1dc8418d9480d3545151b443b2d43b1861a9d832 (diff)
downloadgsoc2013-empathy-db8942598423d5dd11ea28cdfb4b2935f1e2a374.tar
gsoc2013-empathy-db8942598423d5dd11ea28cdfb4b2935f1e2a374.tar.gz
gsoc2013-empathy-db8942598423d5dd11ea28cdfb4b2935f1e2a374.tar.bz2
gsoc2013-empathy-db8942598423d5dd11ea28cdfb4b2935f1e2a374.tar.lz
gsoc2013-empathy-db8942598423d5dd11ea28cdfb4b2935f1e2a374.tar.xz
gsoc2013-empathy-db8942598423d5dd11ea28cdfb4b2935f1e2a374.tar.zst
gsoc2013-empathy-db8942598423d5dd11ea28cdfb4b2935f1e2a374.zip
empathy-accounts: remove --assistant option
It was only used when hacking on the accounts assistant which is going away. https://bugzilla.gnome.org/show_bug.cgi?id=652669
Diffstat (limited to 'src/empathy-accounts.c')
-rw-r--r--src/empathy-accounts.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/empathy-accounts.c b/src/empathy-accounts.c
index e44be8162..a342f417d 100644
--- a/src/empathy-accounts.c
+++ b/src/empathy-accounts.c
@@ -53,7 +53,6 @@
static gboolean only_if_needed = FALSE;
static gboolean hidden = FALSE;
static gchar *selected_account_name = NULL;
-static gboolean assistant = FALSE;
static void
maybe_show_accounts_ui (TpAccountManager *manager,
@@ -65,7 +64,7 @@ maybe_show_accounts_ui (TpAccountManager *manager,
if (only_if_needed && empathy_accounts_has_non_salut_accounts (manager))
return;
- empathy_accounts_show_accounts_ui (manager, NULL, assistant, app);
+ empathy_accounts_show_accounts_ui (manager, NULL, app);
}
static TpAccount *
@@ -122,7 +121,7 @@ account_manager_ready_for_accounts_cb (GObject *source_object,
if (account != NULL)
{
- empathy_accounts_show_accounts_ui (manager, account, assistant, app);
+ empathy_accounts_show_accounts_ui (manager, account, app);
goto out;
}
else
@@ -190,10 +189,6 @@ local_cmdline (GApplication *app,
N_("Initially select given account (eg, "
"gabble/jabber/foo_40example_2eorg0)"),
N_("<account-id>") },
- { "assistant", 'a',
- 0, G_OPTION_ARG_NONE, &assistant,
- N_("Show account assistant"),
- NULL },
{ NULL }
};