aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-12-15 22:34:35 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-12-15 22:34:35 +0800
commit79d91365e3f7d986d28441ad072567bd72b9c776 (patch)
tree6892bf4902bdeeb7711704a63563249c86708e24
parent86aa1501e7a76b92ba402dddc4ce85d403c609bf (diff)
downloadgsoc2013-empathy-79d91365e3f7d986d28441ad072567bd72b9c776.tar
gsoc2013-empathy-79d91365e3f7d986d28441ad072567bd72b9c776.tar.gz
gsoc2013-empathy-79d91365e3f7d986d28441ad072567bd72b9c776.tar.bz2
gsoc2013-empathy-79d91365e3f7d986d28441ad072567bd72b9c776.tar.lz
gsoc2013-empathy-79d91365e3f7d986d28441ad072567bd72b9c776.tar.xz
gsoc2013-empathy-79d91365e3f7d986d28441ad072567bd72b9c776.tar.zst
gsoc2013-empathy-79d91365e3f7d986d28441ad072567bd72b9c776.zip
empathy-accounts: no need to get argv, we don't use it
-rw-r--r--src/empathy-accounts.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/empathy-accounts.c b/src/empathy-accounts.c
index 6d0561b14..16a4c0bfb 100644
--- a/src/empathy-accounts.c
+++ b/src/empathy-accounts.c
@@ -140,13 +140,8 @@ static int
app_command_line_cb (GApplication *app,
GApplicationCommandLine *cmdline)
{
- gchar **argv;
- gint argc;
-
g_application_hold (app);
- argv = g_application_command_line_get_arguments (cmdline, &argc);
-
/* if the window is ready, present it; otherwise, it will be presented when
* the accounts manager is prepared */
if (account_manager_prepared)
@@ -160,8 +155,6 @@ app_command_line_cb (GApplication *app,
g_object_unref (account_manager);
}
- g_strfreev (argv);
-
return 0;
}