[empathy] empathy-chat-view: remove trailing tabs



commit d462954efb034d07c1c4a274c05d171cd476f276
Author: Guillaume Desmottes <guillaume desmottes collabora co uk>
Date:   Wed Jun 24 15:53:52 2009 +0100

    empathy-chat-view: remove trailing tabs

 libempathy-gtk/empathy-chat-view.c |   32 ++++++++++++++++----------------
 1 files changed, 16 insertions(+), 16 deletions(-)
---
diff --git a/libempathy-gtk/empathy-chat-view.c b/libempathy-gtk/empathy-chat-view.c
index e0a7905..ed5740a 100644
--- a/libempathy-gtk/empathy-chat-view.c
+++ b/libempathy-gtk/empathy-chat-view.c
@@ -31,21 +31,21 @@ GType
 empathy_chat_view_get_type (void)
 {
 	static GType type = 0;
-	
+
 	if (!type) {
 		static const GTypeInfo type_info = {
 			sizeof (EmpathyChatViewIface),
 			chat_view_base_init,
 			NULL,
 		};
-		
+
 		type = g_type_register_static (G_TYPE_INTERFACE,
 					       "EmpathyChatView",
 					       &type_info, 0);
-		
+
 		g_type_interface_add_prerequisite (type, GTK_TYPE_WIDGET);
 	}
-	
+
 	return type;
 }
 
@@ -53,7 +53,7 @@ static void
 chat_view_base_init (gpointer klass)
 {
 	static gboolean initialized = FALSE;
-	
+
 	if (!initialized) {
 		initialized = TRUE;
 	}
@@ -64,7 +64,7 @@ empathy_chat_view_append_message (EmpathyChatView *view,
 				  EmpathyMessage  *msg)
 {
 	g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
-	
+
 	if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->append_message) {
 		EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->append_message (view,
 									 msg);
@@ -76,7 +76,7 @@ empathy_chat_view_append_event (EmpathyChatView *view,
 				const gchar    *str)
 {
 	g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
-	
+
 	if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->append_event) {
 		EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->append_event (view,
 								       str);
@@ -88,7 +88,7 @@ empathy_chat_view_scroll (EmpathyChatView *view,
 			  gboolean        allow_scrolling)
 {
 	g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
-	
+
 	if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->scroll) {
 		EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->scroll (view,
 								 allow_scrolling);
@@ -99,7 +99,7 @@ void
 empathy_chat_view_scroll_down (EmpathyChatView *view)
 {
 	g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
-	
+
 	if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->scroll_down) {
 		EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->scroll_down (view);
 	}
@@ -109,7 +109,7 @@ gboolean
 empathy_chat_view_get_has_selection (EmpathyChatView *view)
 {
 	g_return_val_if_fail (EMPATHY_IS_CHAT_VIEW (view), FALSE);
-	
+
 	if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->get_has_selection) {
 		return EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->get_has_selection (view);
 	}
@@ -120,7 +120,7 @@ void
 empathy_chat_view_clear (EmpathyChatView *view)
 {
 	g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
-	
+
 	if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->clear) {
 		EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->clear (view);
 	}
@@ -132,7 +132,7 @@ empathy_chat_view_find_previous (EmpathyChatView *view,
 				 gboolean        new_search)
 {
 	g_return_val_if_fail (EMPATHY_IS_CHAT_VIEW (view), FALSE);
-	
+
 	if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->find_previous) {
 		return EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->find_previous (view,
 									       search_criteria,
@@ -147,7 +147,7 @@ empathy_chat_view_find_next (EmpathyChatView *view,
 			     gboolean        new_search)
 {
 	g_return_val_if_fail (EMPATHY_IS_CHAT_VIEW (view), FALSE);
-	
+
 	if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->find_next) {
 		return EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->find_next (view,
 									   search_criteria,
@@ -164,7 +164,7 @@ empathy_chat_view_find_abilities (EmpathyChatView *view,
 				  gboolean       *can_do_next)
 {
 	g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
-	
+
 	if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->find_abilities) {
 		EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->find_abilities (view,
 									 search_criteria,
@@ -178,7 +178,7 @@ empathy_chat_view_highlight (EmpathyChatView *view,
 			     const gchar     *text)
 {
 	g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
-	
+
 	if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->highlight) {
 		EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->highlight (view, text);
 	}
@@ -188,7 +188,7 @@ void
 empathy_chat_view_copy_clipboard (EmpathyChatView *view)
 {
 	g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
-	
+
 	if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->copy_clipboard) {
 		EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->copy_clipboard (view);
 	}



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]