aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-12-15 23:50:52 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-12-15 23:53:10 +0800
commit91aa125dff5bbd4e967aa4cbec4892b4158c2f5b (patch)
tree3e3dd9c87e8e10e3bf21e774f203c618812a56a9 /libempathy-gtk
parent30f5f6ea4a935eaa5d68f9d68998bee4b5d1bcbb (diff)
downloadgsoc2013-empathy-91aa125dff5bbd4e967aa4cbec4892b4158c2f5b.tar
gsoc2013-empathy-91aa125dff5bbd4e967aa4cbec4892b4158c2f5b.tar.gz
gsoc2013-empathy-91aa125dff5bbd4e967aa4cbec4892b4158c2f5b.tar.bz2
gsoc2013-empathy-91aa125dff5bbd4e967aa4cbec4892b4158c2f5b.tar.lz
gsoc2013-empathy-91aa125dff5bbd4e967aa4cbec4892b4158c2f5b.tar.xz
gsoc2013-empathy-91aa125dff5bbd4e967aa4cbec4892b4158c2f5b.tar.zst
gsoc2013-empathy-91aa125dff5bbd4e967aa4cbec4892b4158c2f5b.zip
remove useless paranthesis
Diffstat (limited to 'libempathy-gtk')
-rw-r--r--libempathy-gtk/empathy-ui-utils.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libempathy-gtk/empathy-ui-utils.c b/libempathy-gtk/empathy-ui-utils.c
index d7abb9a5e..e2946e513 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;
}