diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-12-15 23:50:52 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-12-15 23:53:10 +0800 |
commit | 91aa125dff5bbd4e967aa4cbec4892b4158c2f5b (patch) | |
tree | 3e3dd9c87e8e10e3bf21e774f203c618812a56a9 /libempathy-gtk | |
parent | 30f5f6ea4a935eaa5d68f9d68998bee4b5d1bcbb (diff) | |
download | gsoc2013-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.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 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; } |