diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2025-07-07 11:58:49 +0200 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2025-07-07 11:58:49 +0200 |
| commit | 51cca24d04768dc73a8d0317db757a0ed7f69eaf (patch) | |
| tree | 9588a1a7b89bbdbf6be381a5fa1950c52fed84f9 | |
| parent | 2a1677802fe68a9745e9ab6b2dcbeb515e50886c (diff) | |
Add missing and remove unnecessary #include statements
Note: if user code requires a header, then user code must #include it.
| -rw-r--r-- | FL/Fl_Help_View.H | 2 | ||||
| -rw-r--r-- | src/Fl_Help_View.cxx | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/FL/Fl_Help_View.H b/FL/Fl_Help_View.H index e2ecdd095..68d04aa9e 100644 --- a/FL/Fl_Help_View.H +++ b/FL/Fl_Help_View.H @@ -26,8 +26,6 @@ #include "Fl.H" #include "Fl_Group.H" #include "Fl_Scrollbar.H" -#include <FL/fl_draw.H> // this is no longer needed here, but external source code seems to rely on it -#include <FL/filename.H> // this is no longer needed here, but external source code seems to rely on it // // System and C++ header files diff --git a/src/Fl_Help_View.cxx b/src/Fl_Help_View.cxx index 2aca88e2e..11c5d6950 100644 --- a/src/Fl_Help_View.cxx +++ b/src/Fl_Help_View.cxx @@ -40,6 +40,7 @@ #include <stdio.h> #include <stdlib.h> +#include <stdint.h> #include <ctype.h> #include <errno.h> #include <math.h> |
