diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2025-07-01 11:04:52 +0200 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2025-07-01 11:04:52 +0200 |
| commit | a34711daeb92fb1c3cb18d5f9d23cf23f37969ce (patch) | |
| tree | c3d2f0c23625513bbc833ad25a8d006d51bc782c /FL | |
| parent | dbd54b85579a62099ddd6a4834aeaaf5afd8142c (diff) | |
Remove FLTK 1.4 ABI guards
Diffstat (limited to 'FL')
| -rw-r--r-- | FL/Fl_Graphics_Driver.H | 6 | ||||
| -rw-r--r-- | FL/Fl_Help_View.H | 5 |
2 files changed, 2 insertions, 9 deletions
diff --git a/FL/Fl_Graphics_Driver.H b/FL/Fl_Graphics_Driver.H index 13287943a..c14c4ac34 100644 --- a/FL/Fl_Graphics_Driver.H +++ b/FL/Fl_Graphics_Driver.H @@ -57,11 +57,7 @@ typedef struct _PangoFontDescription PangoFontDescription; // See issue #1139: "FL_REGION_STACK_SIZE could be increased" // and issue #1140: "Fix static array allocation". -#if FL_ABI_VERSION >= 10401 -# define FL_REGION_STACK_SIZE 64 -#else -# define FL_REGION_STACK_SIZE 10 -#endif +#define FL_REGION_STACK_SIZE 64 #define FL_MATRIX_STACK_SIZE 32 diff --git a/FL/Fl_Help_View.H b/FL/Fl_Help_View.H index 6a59e58c8..a544e366d 100644 --- a/FL/Fl_Help_View.H +++ b/FL/Fl_Help_View.H @@ -225,11 +225,8 @@ class FL_EXPORT Fl_Help_View : public Fl_Group { // Help viewer widget atargets_; ///< Allocated targets Fl_Help_Target *targets_; ///< Targets -#if FL_ABI_VERSION >= 10401 + // FIXME: do we really need this size? char directory_[2 * FL_PATH_MAX + 15]; ///< Directory for current file -#else - char directory_[FL_PATH_MAX]; ///< Directory for current file -#endif char filename_[FL_PATH_MAX]; ///< Current filename int topline_, ///< Top line in document |
