summaryrefslogtreecommitdiff
path: root/src/spinning_cursor.c
diff options
context:
space:
mode:
authorOlivier Fourdan <fourdan.olivier@wanadoo.fr>2006-09-11 20:39:40 +0000
committerOlivier Fourdan <fourdan.olivier@wanadoo.fr>2006-09-11 20:39:40 +0000
commitf0209ee272c026dd20fca71eb00fe6cce22b11bb (patch)
tree050041000e4d3d96d9725129a491b7a4f222a51d /src/spinning_cursor.c
parent19195915fffa0f1dc02f789e74fcac528817622a (diff)
downloadxfwm4-f0209ee272c026dd20fca71eb00fe6cce22b11bb.tar.gz
Set focus flag on windows initially mapped on other desktops
(Old svn revision: 23128)
Diffstat (limited to 'src/spinning_cursor.c')
-rw-r--r--src/spinning_cursor.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/spinning_cursor.c b/src/spinning_cursor.c
index 169461bc7..424e4d3a4 100644
--- a/src/spinning_cursor.c
+++ b/src/spinning_cursor.c
@@ -1,22 +1,22 @@
/* $Id$
-
+
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
-
+
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
-
+
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-
+
mozilla - (c) 1998 mozilla.org
xfwm4 - (c) 2002-2006 Olivier Fourdan
-
+
*/
#ifdef HAVE_CONFIG_H
@@ -75,11 +75,11 @@ cursorCreateSpinning (Display * dpy)
bg.blue = 0xffff;
bg.flags = 0xf;
- cursor = XCreatePixmapFromBitmapData (dpy, DefaultRootWindow(dpy),
+ cursor = XCreatePixmapFromBitmapData (dpy, DefaultRootWindow(dpy),
(char *) xlib_spinning_bits,
32, 32, 0xffffffff, 0x0, 1);
mask = XCreatePixmapFromBitmapData (dpy, DefaultRootWindow(dpy),
- (char *) xlib_spinning_mask_bits,
+ (char *) xlib_spinning_mask_bits,
32, 32, 0xffffffff, 0x0, 1);
xcursor = XCreatePixmapCursor (dpy, cursor, mask, &fg, &bg, 2, 2);
XFreePixmap (dpy, mask);