diff options
author | jsorg71 <jsorg71> | 2009-08-19 07:24:20 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2009-08-19 07:24:20 +0000 |
commit | 3fd42d808adf82bd910c3e51b4dc89b3d35107fa (patch) | |
tree | d42469457b2b6428faf22a1f47d85f71319eb770 | |
parent | b10851d32749d2ddfc605d898ee123c043d3bde3 (diff) | |
download | xrdp-proprietary-3fd42d808adf82bd910c3e51b4dc89b3d35107fa.tar.gz xrdp-proprietary-3fd42d808adf82bd910c3e51b4dc89b3d35107fa.zip |
added SECONDARY
-rw-r--r-- | sesman/chansrv/clipboard.c | 2 |
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; |