- 18 Nov, 2019 1 commit
-
-
Ulrich Sibiller authored
-
- 15 Nov, 2019 31 commits
-
-
Mike Gabriel authored
Attributes GH PR #875: https://github.com/ArcticaProject/nx-libs/pull/875
-
Ulrich Sibiller authored
fix one FIXME. This is a rewritten and extended version of a quick patch by Danil Pleshakov and Dimbor.
-
Ulrich Sibiller authored
Correctly determine the Atom names from the real X server.
-
Ulrich Sibiller authored
-
Ulrich Sibiller authored
The previously used "Atom" type was confusing. Clarify this by writing the code as requested in the manpage of XChangeProperty: "If the specified format is 8, the property data must be a char array. If the specified format is 16, the property data must be a short array. If the specified format is 32, the property data must be a long array."
-
Mike Gabriel authored
Attributes GH PR #860: https://github.com/ArcticaProject/nx-libs/pull/860
-
Ulrich Sibiller authored
make i a local loop variable everywhere by changing the while loop to a for loop.
-
Ulrich Sibiller authored
-
Ulrich Sibiller authored
-
Ulrich Sibiller authored
-
Ulrich Sibiller authored
-
Ulrich Sibiller authored
-
Ulrich Sibiller authored
-
Ulrich Sibiller authored
-
Ulrich Sibiller authored
-
Ulrich Sibiller authored
-
Ulrich Sibiller authored
This fixes a possible unitialized struct variable.
-
Mike Gabriel authored
Attributes GH PR #867: https://github.com/ArcticaProject/nx-libs/pull/867
-
Ulrich Sibiller authored
plus some minor formatting fixes
-
Ulrich Sibiller authored
-
Ulrich Sibiller authored
This check has already been done before we reach here. Also add some comments about a condition that will never occur...
-
Ulrich Sibiller authored
-
Mike Gabriel authored
Attributes GH PR #857: https://github.com/ArcticaProject/nx-libs/pull/857
-
Ulrich Sibiller authored
This makes them much more readable
-
Ulrich Sibiller authored
-
Ulrich Sibiller authored
-
Ulrich Sibiller authored
-
Ulrich Sibiller authored
-
Ulrich Sibiller authored
This should disable clipboard but effictively did activate clipboard=both.
-
Ulrich Sibiller authored
Right at the beginnigng of nxagentParseSingleOption we check for "clipboard" and prepare argv and argc accordingly for ddxProcessArgument. The removed code thus could never be reached.
-
Ulrich Sibiller authored
"clipboard=something" does not need to be passed on, so return after setting nxagentOptions accordingly. This fixes [nx-X11/programs/Xserver/hw/nxagent/Args.c:1584]: (error) Uninitialized variable: argc
-
- 02 Nov, 2019 8 commits
-
-
Mike Gabriel authored
Attributes GH PR #868: https://github.com/ArcticaProject/nx-libs/pull/868
-
Ulrich Sibiller authored
instead of a full copy. We still have our own function because we need to handle the nxagentGlxTrap. This trap is now set before the start of the dispatcher while it has been set only directly before calling the dispatched function. Saves ~50 duplicated lines.
-
Mike Gabriel authored
Attributes GH PR #866: https://github.com/ArcticaProject/nx-libs/pull/866
-
Ulrich Sibiller authored
DeleteWindow() is calling FreeWindowResources() which is calling DisposeWindowOptional() which sets pWin->optional to NULL. So the now removed code was never called. After removal DeleteWindow() is identical to the dix version, so we use that one.
-
Ulrich Sibiller authored
-
Ulrich Sibiller authored
many functions are almost identical to dix. Mark the minimal changes.
-
Ulrich Sibiller authored
The only difference to the dix version was a fprintf if compiled with -D TEST.
-
Ulrich Sibiller authored
-