diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2010-11-15 07:14:29 +0000 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2010-11-15 07:14:29 +0000 |
| commit | e5ac1f7b9727b140528e1c12753338a738e66e3a (patch) | |
| tree | 920a29cb95bed275381c7951111f17a954a858cb /src | |
| parent | 7b9a2e88ad59b4955c46065df480ac70353088ae (diff) | |
Fixed X11 cut/copy problem on 64-bit systems (STR #2419)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7837 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src')
| -rw-r--r-- | src/Fl_x.cxx | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/Fl_x.cxx b/src/Fl_x.cxx index 6300d5d56..d6e34764d 100644 --- a/src/Fl_x.cxx +++ b/src/Fl_x.cxx @@ -310,6 +310,14 @@ Atom fl_XdndURIList; Atom fl_XaUtf8String; Atom fl_XaTextUriList; +/* + X defines 32-bit-entities to have a format value of max. 32, + although sizeof(atom) can be 8 (64 bits) on a 64-bit OS. + See also fl_open_display() for sizeof(atom) < 4. + Used for XChangeProperty (see STR #2419). +*/ +static int atom_bits = 32; + static void fd_callback(int,void *) { do_queued_events(); } @@ -583,6 +591,9 @@ void fl_open_display(Display* d) { fl_XdndURIList = XInternAtom(d, "text/uri-list", 0); fl_XaUtf8String = XInternAtom(d, "UTF8_STRING", 0); fl_XaTextUriList = XInternAtom(d, "text/uri-list", 0); + + if (sizeof(Atom) < 4) + atom_bits = sizeof(Atom) * 8; Fl::add_fd(ConnectionNumber(d), POLLIN, fd_callback); @@ -934,7 +945,7 @@ int fl_handle(const XEvent& thisevent) if (e.target == TARGETS) { Atom a = fl_XaUtf8String; //XA_STRING; XChangeProperty(fl_display, e.requestor, e.property, - XA_ATOM, sizeof(Atom)*8, 0, (unsigned char*)&a, 1); + XA_ATOM, atom_bits, 0, (unsigned char*)&a, 1); } else if (/*e.target == XA_STRING &&*/ fl_selection_length[clipboard]) { XChangeProperty(fl_display, e.requestor, e.property, e.target, 8, 0, |
