diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-03-18 22:45:32 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-03-29 23:39:13 +0800 |
commit | e3c822bf3b14a6a769353a35a137a0b0e183ac15 (patch) | |
tree | 7f9f0b6ff38840e42d28f2d4fd1db36007674440 /libempathy-gtk/empathy-chat.c | |
parent | b8cc8019e97c48c259c04e100443f2ce526a821c (diff) | |
download | gsoc2013-empathy-e3c822bf3b14a6a769353a35a137a0b0e183ac15.tar gsoc2013-empathy-e3c822bf3b14a6a769353a35a137a0b0e183ac15.tar.gz gsoc2013-empathy-e3c822bf3b14a6a769353a35a137a0b0e183ac15.tar.bz2 gsoc2013-empathy-e3c822bf3b14a6a769353a35a137a0b0e183ac15.tar.lz gsoc2013-empathy-e3c822bf3b14a6a769353a35a137a0b0e183ac15.tar.xz gsoc2013-empathy-e3c822bf3b14a6a769353a35a137a0b0e183ac15.tar.zst gsoc2013-empathy-e3c822bf3b14a6a769353a35a137a0b0e183ac15.zip |
chat_input_text_buffer_changed_cb: 'priv' is useless
Diffstat (limited to 'libempathy-gtk/empathy-chat.c')
-rw-r--r-- | libempathy-gtk/empathy-chat.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libempathy-gtk/empathy-chat.c b/libempathy-gtk/empathy-chat.c index 4db9e455c..23e85c844 100644 --- a/libempathy-gtk/empathy-chat.c +++ b/libempathy-gtk/empathy-chat.c @@ -1244,13 +1244,10 @@ static void chat_input_text_buffer_changed_cb (GtkTextBuffer *buffer, EmpathyChat *chat) { - EmpathyChatPriv *priv; GtkTextIter start, end; gchar *str; gboolean spell_checker = FALSE; - priv = GET_PRIV (chat); - if (gtk_text_buffer_get_char_count (buffer) == 0) { chat_composing_stop (chat); } else { |