aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-chat-view.c
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-06-24 22:53:52 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-06-25 00:32:27 +0800
commitd462954efb034d07c1c4a274c05d171cd476f276 (patch)
tree28bdc1a9b61532f02b79ecdf69aa7f856f96f3c7 /libempathy-gtk/empathy-chat-view.c
parent0573829c980d06c47d2ceb88f890389d16b400a0 (diff)
downloadgsoc2013-empathy-d462954efb034d07c1c4a274c05d171cd476f276.tar
gsoc2013-empathy-d462954efb034d07c1c4a274c05d171cd476f276.tar.gz
gsoc2013-empathy-d462954efb034d07c1c4a274c05d171cd476f276.tar.bz2
gsoc2013-empathy-d462954efb034d07c1c4a274c05d171cd476f276.tar.lz
gsoc2013-empathy-d462954efb034d07c1c4a274c05d171cd476f276.tar.xz
gsoc2013-empathy-d462954efb034d07c1c4a274c05d171cd476f276.tar.zst
gsoc2013-empathy-d462954efb034d07c1c4a274c05d171cd476f276.zip
empathy-chat-view: remove trailing tabs
Diffstat (limited to 'libempathy-gtk/empathy-chat-view.c')
-rw-r--r--libempathy-gtk/empathy-chat-view.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/libempathy-gtk/empathy-chat-view.c b/libempathy-gtk/empathy-chat-view.c
index e0a7905df..ed5740a8e 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);
}