From: Sjoerd Simons Date: Tue, 4 May 2010 10:30:01 +0000 (+0100) Subject: Add a comment, fix indentation X-Git-Url: https://git.0d.be/?p=empathy.git;a=commitdiff_plain;h=05e3181257bc2664f462879467850d522450d48d Add a comment, fix indentation --- 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))