From 05e3181257bc2664f462879467850d522450d48d Mon Sep 17 00:00:00 2001 From: Sjoerd Simons Date: Tue, 4 May 2010 11:30:01 +0100 Subject: [PATCH] Add a comment, fix indentation --- src/empathy-chat-window.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/empathy-chat-window.c b/src/empathy-chat-window.c index f80223cc..43bb7489 100644 --- a/src/empathy-chat-window.c +++ b/src/empathy-chat-window.c @@ -108,6 +108,7 @@ typedef struct { GtkAction *menu_tabs_right; GtkAction *menu_tabs_detach; + /* Last user action time we acted upon to show a tab */ guint32 x_user_action_time; } EmpathyChatWindowPriv; @@ -2311,8 +2312,8 @@ empathy_chat_window_present_chat (EmpathyChat *chat, priv = GET_PRIV (window); /* Don't present or switch tab if the action was earlier then the - last actions X time, accounting for overflow and the first ever - presentation */ + * last actions X time, accounting for overflow and the first ever + * presentation */ if (priv->x_user_action_time != 0 && X_EARLIER_OR_EQL (x_timestamp, priv->x_user_action_time)) -- 2.39.2