diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-01-21 22:33:00 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-01-25 22:13:39 +0800 |
commit | a24db41f217eea1cbf929cc3e623c50ca626db4b (patch) | |
tree | 040d3acff08bdb54b0e2b0bfe48999611ccce41c /src/empathy-account-assistant.h | |
parent | fcfdcc4011d7131d852d19474eb09eaa4a6e43d7 (diff) | |
download | gsoc2013-empathy-a24db41f217eea1cbf929cc3e623c50ca626db4b.tar gsoc2013-empathy-a24db41f217eea1cbf929cc3e623c50ca626db4b.tar.gz gsoc2013-empathy-a24db41f217eea1cbf929cc3e623c50ca626db4b.tar.bz2 gsoc2013-empathy-a24db41f217eea1cbf929cc3e623c50ca626db4b.tar.lz gsoc2013-empathy-a24db41f217eea1cbf929cc3e623c50ca626db4b.tar.xz gsoc2013-empathy-a24db41f217eea1cbf929cc3e623c50ca626db4b.tar.zst gsoc2013-empathy-a24db41f217eea1cbf929cc3e623c50ca626db4b.zip |
Pass a ready EmpathyConnectionManagers to empathy_account_assistant_show
This kinda suck but we have to construct the assistant in a sync way so can't
wait for the manager to become ready.
Diffstat (limited to 'src/empathy-account-assistant.h')
-rw-r--r-- | src/empathy-account-assistant.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/empathy-account-assistant.h b/src/empathy-account-assistant.h index ef91fa9da..d99475fe3 100644 --- a/src/empathy-account-assistant.h +++ b/src/empathy-account-assistant.h @@ -26,6 +26,8 @@ #include <glib-object.h> #include <gtk/gtk.h> +#include <libempathy/empathy-connection-managers.h> + G_BEGIN_DECLS #define EMPATHY_TYPE_ACCOUNT_ASSISTANT empathy_account_assistant_get_type() @@ -56,7 +58,8 @@ typedef struct { GType empathy_account_assistant_get_type (void); -GtkWidget *empathy_account_assistant_show (GtkWindow *parent); +GtkWidget *empathy_account_assistant_show (GtkWindow *parent, + EmpathyConnectionManagers *connection_mgrs); G_END_DECLS |