Commit 1bf68e32 authored by Ulrich Sibiller's avatar Ulrich Sibiller Committed by Mike Gabriel

Clipboard.c: whitespace fixes

parent a6c57d6f
...@@ -663,13 +663,13 @@ FIXME: Do we need this? ...@@ -663,13 +663,13 @@ FIXME: Do we need this?
int numTargets = 1; int numTargets = 1;
XChangeProperty (nxagentDisplay, XChangeProperty (nxagentDisplay,
X->xselectionrequest.requestor, X->xselectionrequest.requestor,
X->xselectionrequest.property, X->xselectionrequest.property,
XInternAtom(nxagentDisplay, "ATOM", 0), XInternAtom(nxagentDisplay, "ATOM", 0),
sizeof(Atom)*8, sizeof(Atom)*8,
PropModeReplace, PropModeReplace,
(unsigned char*)&targets, (unsigned char*)&targets,
numTargets); numTargets);
nxagentReplyRequestSelection(X, True); nxagentReplyRequestSelection(X, True);
} }
else if (X->xselectionrequest.target == serverTIMESTAMP) else if (X->xselectionrequest.target == serverTIMESTAMP)
...@@ -678,13 +678,13 @@ FIXME: Do we need this? ...@@ -678,13 +678,13 @@ FIXME: Do we need this?
if (i < nxagentMaxSelections) if (i < nxagentMaxSelections)
{ {
XChangeProperty(nxagentDisplay, XChangeProperty(nxagentDisplay,
X->xselectionrequest.requestor, X->xselectionrequest.requestor,
X->xselectionrequest.property, X->xselectionrequest.property,
XA_INTEGER, XA_INTEGER,
32, 32,
PropModeReplace, PropModeReplace,
(unsigned char *) &lastSelectionOwner[i].lastTimeChanged, (unsigned char *) &lastSelectionOwner[i].lastTimeChanged,
1); 1);
nxagentReplyRequestSelection(X, True); nxagentReplyRequestSelection(X, True);
} }
} }
......
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