aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-05-18 23:03:27 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-05-18 23:07:16 +0800
commitbd8565a59fefc0c2819c9a1b5c8d7a1dee1f15ad (patch)
tree4d7938e8f14a986e2b35742d6a83517a2c20c5e2 /libempathy-gtk
parent65fb5fdace542411a014e1e0e66620e29445f5d6 (diff)
downloadgsoc2013-empathy-bd8565a59fefc0c2819c9a1b5c8d7a1dee1f15ad.tar
gsoc2013-empathy-bd8565a59fefc0c2819c9a1b5c8d7a1dee1f15ad.tar.gz
gsoc2013-empathy-bd8565a59fefc0c2819c9a1b5c8d7a1dee1f15ad.tar.bz2
gsoc2013-empathy-bd8565a59fefc0c2819c9a1b5c8d7a1dee1f15ad.tar.lz
gsoc2013-empathy-bd8565a59fefc0c2819c9a1b5c8d7a1dee1f15ad.tar.xz
gsoc2013-empathy-bd8565a59fefc0c2819c9a1b5c8d7a1dee1f15ad.tar.zst
gsoc2013-empathy-bd8565a59fefc0c2819c9a1b5c8d7a1dee1f15ad.zip
empathy-chat-text-view: fix coding style and update FSF address
Diffstat (limited to 'libempathy-gtk')
-rw-r--r--libempathy-gtk/empathy-chat-text-view.c18
-rw-r--r--libempathy-gtk/empathy-chat-text-view.h6
2 files changed, 12 insertions, 12 deletions
diff --git a/libempathy-gtk/empathy-chat-text-view.c b/libempathy-gtk/empathy-chat-text-view.c
index fbe40120a..8874b7ace 100644
--- a/libempathy-gtk/empathy-chat-text-view.c
+++ b/libempathy-gtk/empathy-chat-text-view.c
@@ -15,9 +15,9 @@
*
* You should have received a copy of the GNU General Public
* License along with this program; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
- *
+ * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
+ * Boston, MA 02110-1301 USA
+ *
* Authors: Mikael Hallendal <micke@imendio.com>
* Richard Hult <richard@imendio.com>
* Martyn Russell <martyn@imendio.com>
@@ -113,7 +113,7 @@ chat_text_view_url_event_cb (GtkTextTag *tag,
&start,
&end,
FALSE);
-
+
empathy_url_show (GTK_WIDGET (view), str);
g_free (str);
}
@@ -591,7 +591,7 @@ empathy_chat_text_view_class_init (EmpathyChatTextViewClass *klass)
object_class->set_property = chat_text_view_set_property;
widget_class->size_allocate = chat_text_view_size_allocate;
- widget_class->drag_motion = chat_text_view_drag_motion;
+ widget_class->drag_motion = chat_text_view_drag_motion;
g_object_class_install_property (object_class,
PROP_LAST_CONTACT,
@@ -688,7 +688,7 @@ chat_text_view_scroll_down (EmpathyChatView *view)
if (priv->scroll_time) {
g_timer_reset (priv->scroll_time);
} else {
- priv->scroll_time = g_timer_new();
+ priv->scroll_time = g_timer_new ();
}
if (!priv->scroll_timeout) {
priv->scroll_timeout = g_timeout_add (SCROLL_DELAY,
@@ -894,7 +894,7 @@ chat_text_view_find_previous (EmpathyChatView *view,
if (!new_search && !priv->find_wrapped) {
priv->find_wrapped = TRUE;
result = chat_text_view_find_previous (view,
- search_criteria,
+ search_criteria,
FALSE);
priv->find_wrapped = FALSE;
}
@@ -1008,8 +1008,8 @@ chat_text_view_find_next (EmpathyChatView *view,
/* Here we wrap around. */
if (!new_search && !priv->find_wrapped) {
priv->find_wrapped = TRUE;
- result = chat_text_view_find_next (view,
- search_criteria,
+ result = chat_text_view_find_next (view,
+ search_criteria,
FALSE);
priv->find_wrapped = FALSE;
}
diff --git a/libempathy-gtk/empathy-chat-text-view.h b/libempathy-gtk/empathy-chat-text-view.h
index 120d370f1..7c4ff3430 100644
--- a/libempathy-gtk/empathy-chat-text-view.h
+++ b/libempathy-gtk/empathy-chat-text-view.h
@@ -15,9 +15,9 @@
*
* You should have received a copy of the GNU General Public
* License along with this program; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
- *
+ * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
+ * Boston, MA 02110-1301 USA
+ *
* Authors: Mikael Hallendal <micke@imendio.com>
* Richard Hult <richard@imendio.com>
* Martyn Russell <martyn@imendio.com>