diff options
author | Ulrich Sibiller <uli42@gmx.de> | 2019-06-24 21:39:45 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2019-09-29 17:10:05 +0200 |
commit | 084d9cb546c7d6aa045522af86e5829462717096 (patch) | |
tree | 96a7de88c2249027f3a7105c64a58093351ca031 /nx-X11/programs/Xserver/hw/nxagent/Clipboard.c | |
parent | 7a2836f8db9941aaefd88b595f43589ff513b53e (diff) | |
download | nx-libs-084d9cb546c7d6aa045522af86e5829462717096.tar.gz nx-libs-084d9cb546c7d6aa045522af86e5829462717096.tar.bz2 nx-libs-084d9cb546c7d6aa045522af86e5829462717096.zip |
NXdispatch.c: replace hardcoded values by variables from Clipboard.c
Diffstat (limited to 'nx-X11/programs/Xserver/hw/nxagent/Clipboard.c')
-rw-r--r-- | nx-X11/programs/Xserver/hw/nxagent/Clipboard.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nx-X11/programs/Xserver/hw/nxagent/Clipboard.c b/nx-X11/programs/Xserver/hw/nxagent/Clipboard.c index 024d685ba..a98d07413 100644 --- a/nx-X11/programs/Xserver/hw/nxagent/Clipboard.c +++ b/nx-X11/programs/Xserver/hw/nxagent/Clipboard.c @@ -74,9 +74,9 @@ Atom serverCutProperty; Atom clientCutProperty; static Window serverWindow; -static const int nxagentPrimarySelection = 0; -static const int nxagentClipboardSelection = 1; -static const int nxagentMaxSelections = 2; +const int nxagentPrimarySelection = 0; +const int nxagentClipboardSelection = 1; +const int nxagentMaxSelections = 2; typedef struct _SelectionOwner { |