diff options
| -rw-r--r-- | FL/Fl_Paged_Device.H | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/FL/Fl_Paged_Device.H b/FL/Fl_Paged_Device.H index ef73d0d1b..b2e9169a7 100644 --- a/FL/Fl_Paged_Device.H +++ b/FL/Fl_Paged_Device.H @@ -107,9 +107,15 @@ protected: int y_offset; /** \brief The constructor */ Fl_Paged_Device() : Fl_Surface_Device(NULL) {}; +#if FLTK_ABI_VERSION >= 10302 +public: + /** \brief The destructor */ + virtual ~Fl_Paged_Device() {}; +#else /** \brief The destructor */ virtual ~Fl_Paged_Device() {}; public: +#endif // FLTK_ABI_VERSION static const char *class_id; const char *class_name() {return class_id;}; virtual int start_job(int pagecount, int *frompage = NULL, int *topage = NULL); |
