summaryrefslogtreecommitdiff
path: root/src/fl_dnd.cxx
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-01-09 21:50:02 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-01-09 21:50:02 +0000
commit6eff9b3b146ec35f7bf0eaf89924d9f052ba4bb9 (patch)
tree661e5aac7aefbab26dab19477c736ec1bd3399ad /src/fl_dnd.cxx
parent45ff84b1f5e2f920460f1efef342e50472b1e642 (diff)
First round of DND additions to 1.1 - just X11 code, and I haven't added
the support in widgets yet. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1925 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/fl_dnd.cxx')
-rw-r--r--src/fl_dnd.cxx16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/fl_dnd.cxx b/src/fl_dnd.cxx
index 9390a272a..7f961c602 100644
--- a/src/fl_dnd.cxx
+++ b/src/fl_dnd.cxx
@@ -1,9 +1,9 @@
//
-// "$Id: fl_dnd.cxx,v 1.3 2001/07/29 22:04:44 spitzak Exp $"
+// "$Id: fl_dnd.cxx,v 1.3.2.1 2002/01/09 21:50:02 easysw Exp $"
//
// Drag & Drop code for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-1999 by Bill Spitzak and others.
+// Copyright 1998-2002 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
@@ -20,15 +20,17 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
-// Please report all bugs and problems to "fltk-bugs@easysw.com".
+// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
-#ifdef _WIN32
-#include "fl_dnd_win32.cxx"
+#ifdef WIN32
+# include "fl_dnd_win32.cxx"
+//#elif defined(__APPLE__)
+//# include "fl_dnd_mac.cxx"
#else
-#include "fl_dnd_x.cxx"
+# include "fl_dnd_x.cxx"
#endif
//
-// End of "$Id: fl_dnd.cxx,v 1.3 2001/07/29 22:04:44 spitzak Exp $".
+// End of "$Id: fl_dnd.cxx,v 1.3.2.1 2002/01/09 21:50:02 easysw Exp $".
//