summaryrefslogtreecommitdiffstats
path: root/superkaramba/examples/globalMouse/extension/xcursor.c
diff options
context:
space:
mode:
Diffstat (limited to 'superkaramba/examples/globalMouse/extension/xcursor.c')
-rw-r--r--superkaramba/examples/globalMouse/extension/xcursor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/superkaramba/examples/globalMouse/extension/xcursor.c b/superkaramba/examples/globalMouse/extension/xcursor.c
index 8dad240..3de7ae3 100644
--- a/superkaramba/examples/globalMouse/extension/xcursor.c
+++ b/superkaramba/examples/globalMouse/extension/xcursor.c
@@ -47,7 +47,7 @@ static PyObject* xcursor_position(self, args)
char* display_name;
int root_x_return, root_y_return;
int win_x_return, win_y_return;
- unsigned int mask_return;
+ unsigned int tqmask_return;
if (! (display_name = getenv("DISPLAY")) )
{
@@ -83,7 +83,7 @@ static PyObject* xcursor_position(self, args)
XQueryPointer(display, root, &root_return, &child_return,
&root_x_return, &root_y_return,
&win_x_return, &win_y_return,
- &mask_return);
+ &tqmask_return);
/* return Python Object */
return Py_BuildValue("(i,i)", root_x_return, root_y_return);