aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy-accounts-dialog.c
diff options
context:
space:
mode:
authorSjoerd Simons <sjoerd.simons@collabora.co.uk>2009-07-15 22:14:17 +0800
committerSjoerd Simons <sjoerd.simons@collabora.co.uk>2009-07-16 19:41:48 +0800
commit5dc89d6d5a3f5e47ea7b65fdfdbd84ff178625c5 (patch)
tree4a18182f92d0d1c0987655488a5a2195f49d10e1 /src/empathy-accounts-dialog.c
parent565bab5296d9114543318ff453c6c2a878da417e (diff)
downloadgsoc2013-empathy-5dc89d6d5a3f5e47ea7b65fdfdbd84ff178625c5.tar
gsoc2013-empathy-5dc89d6d5a3f5e47ea7b65fdfdbd84ff178625c5.tar.gz
gsoc2013-empathy-5dc89d6d5a3f5e47ea7b65fdfdbd84ff178625c5.tar.bz2
gsoc2013-empathy-5dc89d6d5a3f5e47ea7b65fdfdbd84ff178625c5.tar.lz
gsoc2013-empathy-5dc89d6d5a3f5e47ea7b65fdfdbd84ff178625c5.tar.xz
gsoc2013-empathy-5dc89d6d5a3f5e47ea7b65fdfdbd84ff178625c5.tar.zst
gsoc2013-empathy-5dc89d6d5a3f5e47ea7b65fdfdbd84ff178625c5.zip
Temporarily disable account importing as it still depends on profiles
Diffstat (limited to 'src/empathy-accounts-dialog.c')
-rw-r--r--src/empathy-accounts-dialog.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/empathy-accounts-dialog.c b/src/empathy-accounts-dialog.c
index 47e2887b0..bfb92af37 100644
--- a/src/empathy-accounts-dialog.c
+++ b/src/empathy-accounts-dialog.c
@@ -43,7 +43,10 @@
#include <libempathy-gtk/empathy-conf.h>
#include "empathy-accounts-dialog.h"
+#if 0
+/* FIXME MC-5 */
#include "empathy-import-dialog.h"
+#endif
#define DEBUG_FLAG EMPATHY_DEBUG_ACCOUNT
#include <libempathy/empathy-debug.h>
@@ -142,8 +145,11 @@ static void accounts_dialog_button_help_clicked_cb (GtkWidget
EmpathyAccountsDialog *dialog);
static void accounts_dialog_button_remove_clicked_cb (GtkWidget *button,
EmpathyAccountsDialog *dialog);
+#if 0
+/* FIXME MC-5 */
static void accounts_dialog_button_import_clicked_cb (GtkWidget *button,
EmpathyAccountsDialog *dialog);
+#endif
static void accounts_dialog_response_cb (GtkWidget *widget,
gint response,
EmpathyAccountsDialog *dialog);
@@ -957,12 +963,15 @@ accounts_dialog_button_remove_clicked_cb (GtkWidget *button,
gtk_widget_destroy (message_dialog);
}
+#if 0
+/* FIXME MC-5 */
static void
accounts_dialog_button_import_clicked_cb (GtkWidget *button,
EmpathyAccountsDialog *dialog)
{
empathy_import_dialog_show (GTK_WINDOW (dialog->window), TRUE);
}
+#endif
static void
accounts_dialog_response_cb (GtkWidget *widget,
@@ -1072,7 +1081,10 @@ empathy_accounts_dialog_show (GtkWindow *parent,
"button_back", "clicked", accounts_dialog_button_back_clicked_cb,
"button_add", "clicked", accounts_dialog_button_add_clicked_cb,
"button_remove", "clicked", accounts_dialog_button_remove_clicked_cb,
+#if 0
+/* FIXME MC-5 */
"button_import", "clicked", accounts_dialog_button_import_clicked_cb,
+#endif
"button_help", "clicked", accounts_dialog_button_help_clicked_cb,
NULL);
@@ -1140,6 +1152,8 @@ empathy_accounts_dialog_show (GtkWindow *parent,
EMPATHY_PREFS_IMPORT_ASKED, &import_asked);
+#if 0
+/* FIXME MC-5 */
if (empathy_import_dialog_accounts_to_import ()) {
if (!import_asked) {
@@ -1151,6 +1165,7 @@ empathy_accounts_dialog_show (GtkWindow *parent,
} else {
gtk_widget_set_sensitive (dialog->button_import, FALSE);
}
+#endif
return dialog->window;
}