[empathy] Little coding style cleanup
- From: Xavier Claessens <xclaesse src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [empathy] Little coding style cleanup
- Date: Wed, 29 Jul 2009 09:22:11 +0000 (UTC)
commit 4da463c098708dd0b52a82195bad5ac537a9197b
Author: Xavier Claessens <xclaesse gmail com>
Date: Fri Jul 24 13:18:06 2009 +0200
Little coding style cleanup
src/empathy-chat-window.c | 7 +++----
1 files changed, 3 insertions(+), 4 deletions(-)
---
diff --git a/src/empathy-chat-window.c b/src/empathy-chat-window.c
index 8dcb68d..3e77553 100644
--- a/src/empathy-chat-window.c
+++ b/src/empathy-chat-window.c
@@ -1000,12 +1000,11 @@ chat_window_set_highlight_room_tab_label (EmpathyChat *chat)
gchar *markup;
GtkWidget *widget;
- if (empathy_chat_is_room (chat) == FALSE)
+ if (!empathy_chat_is_room (chat))
return;
- markup = g_markup_printf_escaped ("<span color=\"%s\">%s</span>",
- "red",
- empathy_chat_get_name (chat));
+ markup = g_markup_printf_escaped ("<span color=\"red\">%s</span>",
+ empathy_chat_get_name (chat));
widget = g_object_get_data (G_OBJECT (chat), "chat-window-tab-label");
gtk_label_set_markup (GTK_LABEL (widget), markup);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]