diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-02-16 19:50:28 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-02-17 00:43:30 +0800 |
commit | a266c221f89cf764d6fe954f63ba61658b8d83e4 (patch) | |
tree | 9696d0a1165fc5186fcd738061d098b09ea2c392 /tests | |
parent | 6fc913d958a7569ce8848797b4d365776cc7af20 (diff) | |
download | gsoc2013-empathy-a266c221f89cf764d6fe954f63ba61658b8d83e4.tar gsoc2013-empathy-a266c221f89cf764d6fe954f63ba61658b8d83e4.tar.gz gsoc2013-empathy-a266c221f89cf764d6fe954f63ba61658b8d83e4.tar.bz2 gsoc2013-empathy-a266c221f89cf764d6fe954f63ba61658b8d83e4.tar.lz gsoc2013-empathy-a266c221f89cf764d6fe954f63ba61658b8d83e4.tar.xz gsoc2013-empathy-a266c221f89cf764d6fe954f63ba61658b8d83e4.tar.zst gsoc2013-empathy-a266c221f89cf764d6fe954f63ba61658b8d83e4.zip |
Remove empathy-account-assistant
DIE DIE DIE!!!
https://bugzilla.gnome.org/show_bug.cgi?id=652669
Diffstat (limited to 'tests')
-rw-r--r-- | tests/interactive/test-empathy-account-assistant.c | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/tests/interactive/test-empathy-account-assistant.c b/tests/interactive/test-empathy-account-assistant.c deleted file mode 100644 index dc04c7027..000000000 --- a/tests/interactive/test-empathy-account-assistant.c +++ /dev/null @@ -1,42 +0,0 @@ -#include <config.h> - -#include <gtk/gtk.h> - -#include <libempathy-gtk/empathy-ui-utils.h> -#include "empathy-account-assistant.h" - -static void -managers_prepare_cb (GObject *source, - GAsyncResult *result, - gpointer user_data) -{ - GtkWidget *assistant; - EmpathyConnectionManagers *managers = EMPATHY_CONNECTION_MANAGERS (source); - - g_assert (empathy_connection_managers_prepare_finish (managers, result, - NULL)); - - assistant = empathy_account_assistant_show (NULL, managers); - - gtk_widget_show_all (assistant); - - g_signal_connect_swapped (assistant, "destroy", - G_CALLBACK (gtk_main_quit), NULL); -} - -int main (int argc, char **argv) -{ - EmpathyConnectionManagers *managers; - - gtk_init (&argc, &argv); - empathy_gtk_init (); - - managers = empathy_connection_managers_dup_singleton (); - - empathy_connection_managers_prepare_async (managers, - managers_prepare_cb, NULL); - - gtk_main (); - - return 0; -} |