summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjsorg71 <jsorg71>2009-08-19 07:24:20 +0000
committerjsorg71 <jsorg71>2009-08-19 07:24:20 +0000
commit3fd42d808adf82bd910c3e51b4dc89b3d35107fa (patch)
treed42469457b2b6428faf22a1f47d85f71319eb770
parentb10851d32749d2ddfc605d898ee123c043d3bde3 (diff)
downloadxrdp-proprietary-3fd42d808adf82bd910c3e51b4dc89b3d35107fa.tar.gz
xrdp-proprietary-3fd42d808adf82bd910c3e51b4dc89b3d35107fa.zip
added SECONDARY
-rw-r--r--sesman/chansrv/clipboard.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sesman/chansrv/clipboard.c b/sesman/chansrv/clipboard.c
index a38ff471..d9dcd60d 100644
--- a/sesman/chansrv/clipboard.c
+++ b/sesman/chansrv/clipboard.c
@@ -37,6 +37,7 @@ static Atom g_timestamp_atom = 0;
static Atom g_multiple_atom = 0;
static Atom g_targets_atom = 0;
static Atom g_primary_atom = 0;
+static Atom g_secondary_atom = 0;
static int g_x_socket = 0;
static tbus g_x_wait_obj = 0;
static int g_clip_up = 0;
@@ -134,6 +135,7 @@ clipboard_init(void)
g_targets_atom = XInternAtom(g_display, "TARGETS", False);
g_multiple_atom = XInternAtom(g_display, "MULTIPLE", False);
g_primary_atom = XInternAtom(g_display, "PRIMARY", False);
+ g_secondary_atom = XInternAtom(g_display, "SECONDARY", False);
g_wnd = XCreateSimpleWindow(g_display, RootWindowOfScreen(g_screen),
0, 0, 4, 4, 0, 0, 0);
input_mask = StructureNotifyMask;