diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2003-05-04 21:45:46 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2003-05-04 21:45:46 +0000 |
| commit | 13005b2a3f0f16579522523460a82dca48e855a4 (patch) | |
| tree | f3ab630c7942e2b827270af379eeed2118dafdb1 /src/fl_dnd_win32.cxx | |
| parent | 78262d8047e347cad3710b383af7f5e9ead88a96 (diff) | |
Fl_File_Browser incorrectly included "." on WIN32 (STR #9)
Include shellapi.h instead of ShellAPI.h in the WIN32
drag-n-drop code in order to work with the MingW cross compiler
(STR #6)
The cursor was not properly restored when doing drag-n-drop on
X11 (STR #4)
Fl::remove_fd() didn't recalculate the highest file descriptor
properly (STR #20)
Fl_Preferences::deleteGroup() didn't work properly (STR #13)
Fixed the fl_show_file_selector() function - it was copying
using the wrong string size (STR #14)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2975 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/fl_dnd_win32.cxx')
| -rw-r--r-- | src/fl_dnd_win32.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fl_dnd_win32.cxx b/src/fl_dnd_win32.cxx index c2b7ca0b4..df2f705df 100644 --- a/src/fl_dnd_win32.cxx +++ b/src/fl_dnd_win32.cxx @@ -1,5 +1,5 @@ // -// "$Id: fl_dnd_win32.cxx,v 1.5.2.14 2003/01/30 21:43:37 easysw Exp $" +// "$Id: fl_dnd_win32.cxx,v 1.5.2.15 2003/05/04 21:45:46 easysw Exp $" // // Drag & Drop code for the Fast Light Tool Kit (FLTK). // @@ -52,7 +52,7 @@ Fl_Window *fl_dnd_target_window = 0; #if !defined(__GNUC__) || __GNUC__ >= 3 #include <ole2.h> -#include <ShellAPI.h> +#include <shellapi.h> /** * subclass the IDropTarget to receive data from DnD operations @@ -349,5 +349,5 @@ int Fl::dnd() // -// End of "$Id: fl_dnd_win32.cxx,v 1.5.2.14 2003/01/30 21:43:37 easysw Exp $". +// End of "$Id: fl_dnd_win32.cxx,v 1.5.2.15 2003/05/04 21:45:46 easysw Exp $". // |
