diff options
| -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 |
