aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@gmail.com>2007-06-10 17:18:19 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2007-06-10 17:18:19 +0800
commit3481670915dcd593d7156bda1aec970a42890e0b (patch)
treee32f211bc48bf2a97674077a07d2eed6a232b9bb /libempathy
parent7011153ce3fa6807677e1df874389085fd5f0971 (diff)
downloadgsoc2013-empathy-3481670915dcd593d7156bda1aec970a42890e0b.tar
gsoc2013-empathy-3481670915dcd593d7156bda1aec970a42890e0b.tar.gz
gsoc2013-empathy-3481670915dcd593d7156bda1aec970a42890e0b.tar.bz2
gsoc2013-empathy-3481670915dcd593d7156bda1aec970a42890e0b.tar.lz
gsoc2013-empathy-3481670915dcd593d7156bda1aec970a42890e0b.tar.xz
gsoc2013-empathy-3481670915dcd593d7156bda1aec970a42890e0b.tar.zst
gsoc2013-empathy-3481670915dcd593d7156bda1aec970a42890e0b.zip
Adding spellcheck support.
2007-06-10 Xavier Claessens <xclaesse@gmail.com> * libempathy-gtk/gossip-spell-dialog.glade: * libempathy-gtk/gossip-spell-dialog.c: * libempathy-gtk/gossip-spell-dialog.h: * libempathy-gtk/gossip-chat.c: * libempathy-gtk/Makefile.am: * configure.ac: Adding spellcheck support. * libempathy-gtk/gossip-spell.c: * libempathy/gossip-conf.c: Remove useless debug messages. svn path=/trunk/; revision=144
Diffstat (limited to 'libempathy')
-rw-r--r--libempathy/gossip-conf.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/libempathy/gossip-conf.c b/libempathy/gossip-conf.c
index 9625a700d..e788da6b4 100644
--- a/libempathy/gossip-conf.c
+++ b/libempathy/gossip-conf.c
@@ -159,9 +159,6 @@ gossip_conf_get_int (GossipConf *conf,
key,
&error);
- gossip_debug (DEBUG_DOMAIN, "Getting int:'%s' (=%d), error:'%s'",
- key, *value, error ? error->message : "None");
-
if (error) {
g_error_free (error);
return FALSE;
@@ -209,10 +206,6 @@ gossip_conf_get_bool (GossipConf *conf,
key,
&error);
- gossip_debug (DEBUG_DOMAIN, "Getting bool:'%s' (=%d ---> %s), error:'%s'",
- key, *value, *value ? "true" : "false",
- error ? error->message : "None");
-
if (error) {
g_error_free (error);
return FALSE;
@@ -259,9 +252,6 @@ gossip_conf_get_string (GossipConf *conf,
key,
&error);
- gossip_debug (DEBUG_DOMAIN, "Getting string:'%s' (='%s'), error:'%s'",
- key, *value, error ? error->message : "None");
-
if (error) {
g_error_free (error);
return FALSE;