aboutsummaryrefslogtreecommitdiff
path: root/xorg-server/hw/xwin/xlaunch/config.cc
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2011-03-07 11:09:57 +0000
committermarha <marha@users.sourceforge.net>2011-03-07 11:09:57 +0000
commitb5eab44b14b3193bfc327d10e556de8236071716 (patch)
tree3a87385a765eda5106df883ff2fab4c93c2e5a33 /xorg-server/hw/xwin/xlaunch/config.cc
parentfaed2dca735b7aa26a146c5e309cafa8134425b9 (diff)
downloadvcxsrv-b5eab44b14b3193bfc327d10e556de8236071716.tar.gz
vcxsrv-b5eab44b14b3193bfc327d10e556de8236071716.tar.bz2
vcxsrv-b5eab44b14b3193bfc327d10e556de8236071716.zip
Added possibility of mapping the PRIMARY selection
Diffstat (limited to 'xorg-server/hw/xwin/xlaunch/config.cc')
-rw-r--r--xorg-server/hw/xwin/xlaunch/config.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/xorg-server/hw/xwin/xlaunch/config.cc b/xorg-server/hw/xwin/xlaunch/config.cc
index 841d7a2a7..3be68b0b3 100644
--- a/xorg-server/hw/xwin/xlaunch/config.cc
+++ b/xorg-server/hw/xwin/xlaunch/config.cc
@@ -88,6 +88,7 @@ void CConfig::Save(const char *filename)
setAttribute(root, "XDMCPBroadcast", broadcast?"True":"False");
setAttribute(root, "XDMCPIndirect", indirect?"True":"False");
setAttribute(root, "Clipboard", clipboard?"True":"False");
+ setAttribute(root, "ClipboardPrimary", clipboardprimary?"True":"False");
setAttribute(root, "ExtraParams", extra_params.c_str());
setAttribute(root, "Wgl", wgl?"True":"False");
@@ -172,6 +173,7 @@ void CConfig::Load(const char *filename)
getAttributeBool(root, "XDMCPBroadcast", broadcast);
getAttributeBool(root, "XDMCPIndirect", indirect);
getAttributeBool(root, "Clipboard", clipboard);
+ getAttributeBool(root, "ClipboardPrimary", clipboardprimary);
getAttribute(root, "ExtraParams", extra_params);
getAttributeBool(root, "Wgl", wgl);