aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-presence-chooser.c
diff options
context:
space:
mode:
authorJonny Lamb <jonnylamb@gnome.org>2009-10-16 20:12:13 +0800
committerJonny Lamb <jonnylamb@gnome.org>2009-10-16 20:21:59 +0800
commit7c95b31d12c54097edb493891f86d28cfb1f4089 (patch)
tree15678d29d94ae4679405acc31eadf54c4869d53e /libempathy-gtk/empathy-presence-chooser.c
parentfbef69ba66c085d504fd2ea4ad3159d14023f789 (diff)
downloadgsoc2013-empathy-7c95b31d12c54097edb493891f86d28cfb1f4089.tar
gsoc2013-empathy-7c95b31d12c54097edb493891f86d28cfb1f4089.tar.gz
gsoc2013-empathy-7c95b31d12c54097edb493891f86d28cfb1f4089.tar.bz2
gsoc2013-empathy-7c95b31d12c54097edb493891f86d28cfb1f4089.tar.lz
gsoc2013-empathy-7c95b31d12c54097edb493891f86d28cfb1f4089.tar.xz
gsoc2013-empathy-7c95b31d12c54097edb493891f86d28cfb1f4089.tar.zst
gsoc2013-empathy-7c95b31d12c54097edb493891f86d28cfb1f4089.zip
presence-chooser: remove "\n"s from DEBUG calls
Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
Diffstat (limited to 'libempathy-gtk/empathy-presence-chooser.c')
-rw-r--r--libempathy-gtk/empathy-presence-chooser.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libempathy-gtk/empathy-presence-chooser.c b/libempathy-gtk/empathy-presence-chooser.c
index fa8864984..7113c77fd 100644
--- a/libempathy-gtk/empathy-presence-chooser.c
+++ b/libempathy-gtk/empathy-presence-chooser.c
@@ -306,7 +306,7 @@ presence_chooser_is_preset (EmpathyPresenceChooser *self)
g_list_free (presets);
- DEBUG ("is_preset(%i, %s) = %i\n", state, status, match);
+ DEBUG ("is_preset(%i, %s) = %i", state, status, match);
return match;
}
@@ -414,7 +414,7 @@ mc_set_custom_state (EmpathyPresenceChooser *self)
/* update the status with MC */
status = gtk_entry_get_text (GTK_ENTRY (entry));
- DEBUG ("Sending state to MC-> %d (%s)\n", priv->state, status);
+ DEBUG ("Sending state to MC-> %d (%s)", priv->state, status);
empathy_idle_set_presence (priv->idle, priv->state, status);
}
@@ -479,12 +479,12 @@ presence_chooser_entry_icon_release_cb (EmpathyPresenceChooser *self,
if (presence_chooser_is_preset (self)) {
/* remove the entry */
- DEBUG ("REMOVING PRESET (%i, %s)\n", state, status);
+ DEBUG ("REMOVING PRESET (%i, %s)", state, status);
empathy_status_presets_remove (state, status);
}
else {
/* save the entry */
- DEBUG ("SAVING PRESET (%i, %s)\n", state, status);
+ DEBUG ("SAVING PRESET (%i, %s)", state, status);
empathy_status_presets_set_last (state, status);
}
@@ -674,7 +674,7 @@ presence_chooser_entry_focus_out_idle_cb (gpointer user_data)
EmpathyPresenceChooser *chooser;
GtkWidget *entry;
- DEBUG ("Autocommiting status message\n");
+ DEBUG ("Autocommiting status message");
chooser = EMPATHY_PRESENCE_CHOOSER (user_data);
entry = gtk_bin_get_child (GTK_BIN (chooser));