Commit 0e496e5d authored by Ulrich Sibiller's avatar Ulrich Sibiller Committed by Mike Gabriel

Screen.c: use consistent spacing on pointer references

parent 8365ce46
...@@ -1778,7 +1778,7 @@ N/A ...@@ -1778,7 +1778,7 @@ N/A
if (nxagentReportWindowIds) if (nxagentReportWindowIds)
{ {
fprintf(stderr, "NXAGENT_WINDOW_ID: SCREEN_WINDOW:[%d],WID:[0x%x]\n", pScreen -> myNum, nxagentDefaultWindows[pScreen->myNum]); fprintf(stderr, "NXAGENT_WINDOW_ID: SCREEN_WINDOW:[%d],WID:[0x%x]\n", pScreen->myNum, nxagentDefaultWindows[pScreen->myNum]);
} }
if (nxagentOption(Rootless) == 0) if (nxagentOption(Rootless) == 0)
...@@ -1787,9 +1787,9 @@ N/A ...@@ -1787,9 +1787,9 @@ N/A
mask = PointerMotionMask; mask = PointerMotionMask;
attributes.event_mask = mask; attributes.event_mask = mask;
nxagentInputWindows[pScreen -> myNum] = nxagentInputWindows[pScreen->myNum] =
XCreateWindow(nxagentDisplay, XCreateWindow(nxagentDisplay,
nxagentDefaultWindows[pScreen -> myNum], nxagentDefaultWindows[pScreen->myNum],
0, 0, 0, 0,
nxagentOption(Width), nxagentOption(Width),
nxagentOption(Height), nxagentOption(Height),
...@@ -1799,7 +1799,7 @@ N/A ...@@ -1799,7 +1799,7 @@ N/A
if (nxagentReportWindowIds) if (nxagentReportWindowIds)
{ {
fprintf(stderr, "NXAGENT_WINDOW_ID: INPUT_WINDOW:[%d],WID:[0x%x]\n", pScreen -> myNum, nxagentInputWindows[pScreen->myNum]); fprintf(stderr, "NXAGENT_WINDOW_ID: INPUT_WINDOW:[%d],WID:[0x%x]\n", pScreen->myNum, nxagentInputWindows[pScreen->myNum]);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment