diff options
Diffstat (limited to 'src/Fl_x.cxx')
| -rw-r--r-- | src/Fl_x.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Fl_x.cxx b/src/Fl_x.cxx index d930c2ec7..7b0f1149e 100644 --- a/src/Fl_x.cxx +++ b/src/Fl_x.cxx @@ -286,6 +286,7 @@ Atom fl_XdndStatus; Atom fl_XdndActionCopy; Atom fl_XdndFinished; //Atom fl_XdndProxy; +Atom fl_XdndURIList; static void fd_callback(int,void *) { @@ -339,6 +340,8 @@ void fl_open_display(Display* d) { fl_XdndActionCopy = XInternAtom(d, "XdndActionCopy", 0); fl_XdndFinished = XInternAtom(d, "XdndFinished", 0); //fl_XdndProxy = XInternAtom(d, "XdndProxy", 0); + fl_XdndEnter = XInternAtom(d, "XdndEnter", 0); + fl_XdndURIList = XInternAtom(d, "text/uri-list", 0); Fl::add_fd(ConnectionNumber(d), POLLIN, fd_callback); |
