aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk
diff options
context:
space:
mode:
authorFelix Kaser <f.kaser@gmx.net>2010-08-03 17:06:56 +0800
committerFelix Kaser <f.kaser@gmx.net>2010-08-03 17:33:33 +0800
commit737212cbc975c9113f4aaf105fb765811805c54a (patch)
treecbf0cda84d6ee401dad224a135eb4020930c20e8 /libempathy-gtk
parent9901d38f39d9d4a71f8232ec4b6ea24426b6b062 (diff)
downloadgsoc2013-empathy-737212cbc975c9113f4aaf105fb765811805c54a.tar
gsoc2013-empathy-737212cbc975c9113f4aaf105fb765811805c54a.tar.gz
gsoc2013-empathy-737212cbc975c9113f4aaf105fb765811805c54a.tar.bz2
gsoc2013-empathy-737212cbc975c9113f4aaf105fb765811805c54a.tar.lz
gsoc2013-empathy-737212cbc975c9113f4aaf105fb765811805c54a.tar.xz
gsoc2013-empathy-737212cbc975c9113f4aaf105fb765811805c54a.tar.zst
gsoc2013-empathy-737212cbc975c9113f4aaf105fb765811805c54a.zip
fixing a method name typo
Diffstat (limited to 'libempathy-gtk')
-rw-r--r--libempathy-gtk/empathy-individual-store.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy-gtk/empathy-individual-store.c b/libempathy-gtk/empathy-individual-store.c
index 623e35626..41d9f5214 100644
--- a/libempathy-gtk/empathy-individual-store.c
+++ b/libempathy-gtk/empathy-individual-store.c
@@ -1408,7 +1408,7 @@ individual_store_setup (EmpathyIndividualStore *self)
}
static gboolean
-individual_store_inibit_active_cb (EmpathyIndividualStore *self)
+individual_store_inhibit_active_cb (EmpathyIndividualStore *self)
{
EmpathyIndividualStorePriv *priv;
@@ -1432,7 +1432,7 @@ empathy_individual_store_init (EmpathyIndividualStore *self)
priv->show_protocols = FALSE;
priv->inhibit_active =
g_timeout_add_seconds (ACTIVE_USER_WAIT_TO_ENABLE_TIME,
- (GSourceFunc) individual_store_inibit_active_cb, self);
+ (GSourceFunc) individual_store_inhibit_active_cb, self);
priv->status_icons =
g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_object_unref);
individual_store_setup (self);