From 29a9e89b39c2fdc1f9498717f5ae53798528ffb1 Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Sat, 26 Mar 2016 02:55:14 +0000 Subject: Remove FLTK_ABI_VERSION from all but *tree*.* and documentation. Everything related to Fl_Tree and its test and demo programs has been cleaned. Documentation needs updates. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11428 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- FL/Fl_Table.H | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) (limited to 'FL/Fl_Table.H') diff --git a/FL/Fl_Table.H b/FL/Fl_Table.H index 341f878b8..bce52bb3e 100644 --- a/FL/Fl_Table.H +++ b/FL/Fl_Table.H @@ -209,15 +209,11 @@ private: int _auto_drag; int _selecting; -#if FLTK_ABI_VERSION >= 10301 int _scrollbar_size; -#endif -#if FLTK_ABI_VERSION >= 10303 enum { TABCELLNAV = 1<<0, ///> tab cell navigation flag }; unsigned int flags_; -#endif // An STL-ish vector without templates class FL_EXPORT IntVector { @@ -1079,8 +1075,6 @@ public: void callback(Fl_Widget*, void*); #endif -#if FLTK_ABI_VERSION >= 10301 - // NEW /** Gets the current size of the scrollbars' troughs, in pixels. @@ -1093,6 +1087,7 @@ public: int scrollbar_size() const { return(_scrollbar_size); } + /** Sets the pixel size of the scrollbars' troughs to \p newSize, in pixels. @@ -1114,9 +1109,8 @@ public: void scrollbar_size(int newSize) { if ( newSize != _scrollbar_size ) redraw(); _scrollbar_size = newSize; - } -#endif -#if FLTK_ABI_VERSION >= 10303 + } + /** Flag to control if Tab navigates table cells or not. @@ -1145,7 +1139,6 @@ public: int tab_cell_nav() const { return(flags_ & TABCELLNAV ? 1 : 0); } -#endif }; #endif /*_FL_TABLE_H*/ -- cgit v1.2.3