aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy-accounts-dialog.c
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@gmail.com>2009-10-05 18:07:21 +0800
committerXavier Claessens <xclaesse@gmail.com>2009-10-05 18:15:49 +0800
commite6325503bf1ecd5e242a8b0447551941793c2285 (patch)
treeebfdc9de849878ac2a0c604401acbdd97c9ffba0 /src/empathy-accounts-dialog.c
parent82b8df252d5057325f39631a7af2a0960a8edd22 (diff)
downloadgsoc2013-empathy-e6325503bf1ecd5e242a8b0447551941793c2285.tar
gsoc2013-empathy-e6325503bf1ecd5e242a8b0447551941793c2285.tar.gz
gsoc2013-empathy-e6325503bf1ecd5e242a8b0447551941793c2285.tar.bz2
gsoc2013-empathy-e6325503bf1ecd5e242a8b0447551941793c2285.tar.lz
gsoc2013-empathy-e6325503bf1ecd5e242a8b0447551941793c2285.tar.xz
gsoc2013-empathy-e6325503bf1ecd5e242a8b0447551941793c2285.tar.zst
gsoc2013-empathy-e6325503bf1ecd5e242a8b0447551941793c2285.zip
Rename HAVE_NBTK to HAVE_MOBLIN.
Diffstat (limited to 'src/empathy-accounts-dialog.c')
-rw-r--r--src/empathy-accounts-dialog.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/empathy-accounts-dialog.c b/src/empathy-accounts-dialog.c
index 4536f91fe..873402212 100644
--- a/src/empathy-accounts-dialog.c
+++ b/src/empathy-accounts-dialog.c
@@ -393,7 +393,7 @@ accounts_dialog_protocol_changed_cb (GtkWidget *widget,
return;
}
-#ifndef HAVE_NBTK
+#ifndef HAVE_MOBLIN
if (tp_connection_manager_protocol_can_register (proto) && !is_gtalk)
{
gtk_widget_show (priv->radiobutton_register);
@@ -798,17 +798,17 @@ accounts_dialog_view_delete_activated_cb (EmpathyCellRendererActivatable *cell,
}
question_dialog_primary_text = g_strdup_printf (
-#ifndef HAVE_NBTK
+#ifndef HAVE_MOBLIN
_("You are about to remove your %s account!\n"
"Are you sure you want to proceed?"),
#else
/* Translators: this is used only when built on a moblin platform */
_("Do you want to remove %s from your computer?"),
-#endif /* HAVE_NBTK */
+#endif /* HAVE_MOBLIN */
empathy_account_get_display_name (account));
accounts_dialog_show_question_dialog (dialog, question_dialog_primary_text,
-#ifndef HAVE_NBTK
+#ifndef HAVE_MOBLIN
_("Any associated conversations and chat rooms will NOT be "
"removed if you decide to proceed.\n"
"\n"
@@ -817,7 +817,7 @@ accounts_dialog_view_delete_activated_cb (EmpathyCellRendererActivatable *cell,
#else
/* Translators: this is used only when built on a moblin platform */
_("This will not remove your account on the server."),
-#endif /* HAVE_NBTK */
+#endif /* HAVE_MOBLIN */
G_CALLBACK (accounts_dialog_delete_account_response_cb),
dialog,
GTK_STOCK_CANCEL, GTK_RESPONSE_NO,
@@ -856,7 +856,7 @@ accounts_dialog_model_add_columns (EmpathyAccountsDialog *dialog)
accounts_dialog_model_pixbuf_data_func,
dialog,
NULL);
-#ifdef HAVE_NBTK
+#ifdef HAVE_MOBLIN
g_object_set (cell, "ypad", 4, NULL);
#endif
@@ -881,7 +881,7 @@ accounts_dialog_model_add_columns (EmpathyAccountsDialog *dialog)
gtk_tree_view_column_pack_start (column, cell, FALSE);
g_object_set (cell,
"icon-name", GTK_STOCK_DELETE,
-#ifdef HAVE_NBTK
+#ifdef HAVE_MOBLIN
"show-on-select", TRUE,
#endif
NULL);
@@ -1432,7 +1432,7 @@ accounts_dialog_button_create_clicked_cb (GtkWidget *button,
g_free (str);
-#ifndef HAVE_NBTK
+#ifndef HAVE_MOBLIN
if (tp_connection_manager_protocol_can_register (proto))
{
gboolean active;
@@ -1629,7 +1629,7 @@ accounts_dialog_build_ui (EmpathyAccountsDialog *dialog)
GtkBuilder *gui;
gchar *filename;
EmpathyAccountsDialogPriv *priv = GET_PRIV (dialog);
-#ifdef HAVE_NBTK
+#ifdef HAVE_MOBLIN
GtkWidget *action_area;
#endif
@@ -1665,7 +1665,7 @@ accounts_dialog_build_ui (EmpathyAccountsDialog *dialog)
g_object_unref (gui);
-#ifdef HAVE_NBTK
+#ifdef HAVE_MOBLIN
action_area = gtk_dialog_get_action_area (GTK_DIALOG (priv->window));
gtk_widget_hide (action_area);