aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/misc/e-cursors.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-07-19 02:05:05 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-07-19 02:05:38 +0800
commitdcf2c0e754d6e251733cea74c2427738122620af (patch)
tree358d2c639c2a5b5cf5fc8f28c515076f8b4d4e5d /widgets/misc/e-cursors.c
parent76fc1247ba88575c0f6e0040672e19e66f53da4f (diff)
downloadgsoc2013-evolution-dcf2c0e754d6e251733cea74c2427738122620af.tar
gsoc2013-evolution-dcf2c0e754d6e251733cea74c2427738122620af.tar.gz
gsoc2013-evolution-dcf2c0e754d6e251733cea74c2427738122620af.tar.bz2
gsoc2013-evolution-dcf2c0e754d6e251733cea74c2427738122620af.tar.lz
gsoc2013-evolution-dcf2c0e754d6e251733cea74c2427738122620af.tar.xz
gsoc2013-evolution-dcf2c0e754d6e251733cea74c2427738122620af.tar.zst
gsoc2013-evolution-dcf2c0e754d6e251733cea74c2427738122620af.zip
More whitespace cleanup.
Diffstat (limited to 'widgets/misc/e-cursors.c')
-rw-r--r--widgets/misc/e-cursors.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/widgets/misc/e-cursors.c b/widgets/misc/e-cursors.c
index e8f4221b60..4ec2717d1c 100644
--- a/widgets/misc/e-cursors.c
+++ b/widgets/misc/e-cursors.c
@@ -80,12 +80,12 @@ create_bitmap_and_mask_from_xpm (GdkBitmap **bitmap, GdkBitmap **mask, const gch
black_color = '.';
yofs = colors + 1;
- for (y = 0; y < 32; y++){
- for (x = 0; x < 32;){
+ for (y = 0; y < 32; y++) {
+ for (x = 0; x < 32;) {
gchar value = 0, maskv = 0;
- for (pix = 0; pix < 8; pix++, x++){
- if (xpm [y + yofs][x] != transparent_color){
+ for (pix = 0; pix < 8; pix++, x++) {
+ if (xpm [y + yofs][x] != transparent_color) {
maskv |= 1 << pix;
/*
@@ -94,7 +94,7 @@ create_bitmap_and_mask_from_xpm (GdkBitmap **bitmap, GdkBitmap **mask, const gch
* We reverse the foreground & background in the next
* routine to compensate.
*/
- if (xpm [y + yofs][x] == black_color){
+ if (xpm [y + yofs][x] == black_color) {
value |= 1 << pix;
}
}
@@ -114,7 +114,7 @@ e_cursors_init (void)
e_color_init ();
- for (i = 0; cursors [i].hot_x; i++){
+ for (i = 0; cursors [i].hot_x; i++) {
if (cursors [i].hot_x < 0)
cursors [i].cursor = gdk_cursor_new (cursors [i].hot_y);
else {