[empathy: 9/11] remove useless paranthesis
- From: Guillaume Desmottes <gdesmott src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [empathy: 9/11] remove useless paranthesis
- Date: Wed, 15 Dec 2010 16:02:35 +0000 (UTC)
commit 91aa125dff5bbd4e967aa4cbec4892b4158c2f5b
Author: Guillaume Desmottes <guillaume desmottes collabora co uk>
Date: Wed Dec 15 16:50:52 2010 +0100
remove useless paranthesis
libempathy-gtk/empathy-ui-utils.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/libempathy-gtk/empathy-ui-utils.c b/libempathy-gtk/empathy-ui-utils.c
index d7abb9a..e2946e5 100644
--- a/libempathy-gtk/empathy-ui-utils.c
+++ b/libempathy-gtk/empathy-ui-utils.c
@@ -1904,7 +1904,7 @@ empathy_make_color_whiter (GdkRGBA *color)
{
const GdkRGBA white = { 1.0, 1.0, 1.0, 1.0 };
- color->red = (color->red + (white).red) / 2;
- color->green = (color->green + (white).green) / 2;
- color->blue = (color->blue + (white).blue) / 2;
+ color->red = (color->red + white.red) / 2;
+ color->green = (color->green + white.green) / 2;
+ color->blue = (color->blue + white.blue) / 2;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]