Skip to content

Commit

Permalink
Fix example programs after removal of some system #include's.
Browse files Browse the repository at this point in the history
This adds missing headers that were previously included in other
FLTK header files.


git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11492 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
  • Loading branch information
Albrecht Schlosser committed Mar 31, 2016
1 parent 8566b12 commit 524ebce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions examples/clipboard.cxx
Expand Up @@ -25,6 +25,9 @@
#include <FL/Fl_Button.H>
#include <FL/Fl.H>
#include <FL/fl_draw.H>
#ifdef WIN32
#include <windows.h>
#endif // WIN32

/* Displays and follows the content of the clipboard with either image or text data
*/
Expand Down
2 changes: 1 addition & 1 deletion examples/table-sort.cxx
Expand Up @@ -31,6 +31,7 @@

#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <vector>
#include <algorithm> // STL sort

Expand All @@ -45,7 +46,6 @@ static const char *G_header[] = { "Date", "Time", "Size", "Filename", "", "", ""
# endif
#else /*WIN32*/
// UNIX
# include <ctype.h>
# define DIRCMD "ls -l"
static const char *G_header[] = { "Perms", "#L", "Own", "Group", "Size", "Date", "", "", "Filename", 0 };
#endif /*WIN32*/
Expand Down

0 comments on commit 524ebce

Please sign in to comment.