diff options
| author | Matthias Melcher <fltk@matthiasm.com> | 2002-02-26 00:34:55 +0000 |
|---|---|---|
| committer | Matthias Melcher <fltk@matthiasm.com> | 2002-02-26 00:34:55 +0000 |
| commit | 7a6ed8c9419b914644936c7e25a2f1eb10d7c28e (patch) | |
| tree | 8fc202fc77c5897558c2c997e87dba625b841791 /src/Fl.cxx | |
| parent | 5dd2625d0365b81093481b74e563e65f29666ef4 (diff) | |
- added DDrag'N'Drop support for MacOS
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1976 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl.cxx')
| -rw-r--r-- | src/Fl.cxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/Fl.cxx b/src/Fl.cxx index f7aa5b027..1dff53f7f 100644 --- a/src/Fl.cxx +++ b/src/Fl.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl.cxx,v 1.24.2.41.2.20 2002/02/24 17:52:17 matthiaswm Exp $" +// "$Id: Fl.cxx,v 1.24.2.41.2.21 2002/02/26 00:34:55 matthiaswm Exp $" // // Main event handling code for the Fast Light Tool Kit (FLTK). // @@ -729,7 +729,11 @@ void Fl_Window::hide() { #ifdef __APPLE__ if ( !parent() ) // don't destroy shared windows! + { + //+ RemoveTrackingHandler( dndTrackingHandler, x->xid ); + //+ RemoveReceiveHandler( dndReceiveHandler, x->xid ); XDestroyWindow(fl_display, x->xid); + } #else XDestroyWindow(fl_display, x->xid); #endif @@ -876,5 +880,5 @@ void Fl_Window::flush() { } // -// End of "$Id: Fl.cxx,v 1.24.2.41.2.20 2002/02/24 17:52:17 matthiaswm Exp $". +// End of "$Id: Fl.cxx,v 1.24.2.41.2.21 2002/02/26 00:34:55 matthiaswm Exp $". // |
