aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy-new-chatroom-dialog.c
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-12-01 20:46:44 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-12-01 20:46:44 +0800
commitc193319ca0b9d130abb525e88ac87c4293e2fb0b (patch)
tree045f8c8288519399f633150d2f8a8c6b57e80093 /src/empathy-new-chatroom-dialog.c
parentd7a092467227ecdcfb5173a1f26a6207606c2154 (diff)
downloadgsoc2013-empathy-c193319ca0b9d130abb525e88ac87c4293e2fb0b.tar
gsoc2013-empathy-c193319ca0b9d130abb525e88ac87c4293e2fb0b.tar.gz
gsoc2013-empathy-c193319ca0b9d130abb525e88ac87c4293e2fb0b.tar.bz2
gsoc2013-empathy-c193319ca0b9d130abb525e88ac87c4293e2fb0b.tar.lz
gsoc2013-empathy-c193319ca0b9d130abb525e88ac87c4293e2fb0b.tar.xz
gsoc2013-empathy-c193319ca0b9d130abb525e88ac87c4293e2fb0b.tar.zst
gsoc2013-empathy-c193319ca0b9d130abb525e88ac87c4293e2fb0b.zip
rename update_join_button_sensitivy to update_join_button_sensitivity
Diffstat (limited to 'src/empathy-new-chatroom-dialog.c')
-rw-r--r--src/empathy-new-chatroom-dialog.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/empathy-new-chatroom-dialog.c b/src/empathy-new-chatroom-dialog.c
index 4a9f8d557..f1ac7c260 100644
--- a/src/empathy-new-chatroom-dialog.c
+++ b/src/empathy-new-chatroom-dialog.c
@@ -361,7 +361,7 @@ new_chatroom_dialog_model_add_columns (EmpathyNewChatroomDialog *dialog)
}
static void
-update_join_button_sensitivy (EmpathyNewChatroomDialog *dialog)
+update_join_button_sensitivity (EmpathyNewChatroomDialog *dialog)
{
const gchar *room;
gboolean sensitive = FALSE;
@@ -413,7 +413,7 @@ new_chatroom_dialog_update_widgets (EmpathyNewChatroomDialog *dialog)
gtk_widget_set_sensitive (dialog->entry_server, TRUE);
}
- update_join_button_sensitivy (dialog);
+ update_join_button_sensitivity (dialog);
/* Final set up of the dialog */
gtk_widget_grab_focus (dialog->entry_room);
@@ -428,7 +428,7 @@ account_status_changed_cb (TpAccount *account,
GHashTable *details,
EmpathyNewChatroomDialog *self)
{
- update_join_button_sensitivy (self);
+ update_join_button_sensitivity (self);
}
static void
@@ -674,7 +674,7 @@ new_chatroom_dialog_entry_changed_cb (GtkWidget *entry,
EmpathyNewChatroomDialog *dialog)
{
if (entry == dialog->entry_room) {
- update_join_button_sensitivy (dialog);
+ update_join_button_sensitivity (dialog);
/* FIXME: Select the room in the list */
}