diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/Fl_Tabs.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Fl_Tabs.cxx b/src/Fl_Tabs.cxx index cd2240652..bbc662a7b 100644 --- a/src/Fl_Tabs.cxx +++ b/src/Fl_Tabs.cxx @@ -461,6 +461,12 @@ Fl_Tabs::Fl_Tabs(int X,int Y,int W, int H, const char *l) : Fl_Group(X,Y,W,H,l) { box(FL_THIN_UP_BOX); +#if FLTK_ABI_VERSION >= 10304 + // NEW (nothing) +#else + // OLD (init to prevent 'unused' warnings) -- STR #3169 + value_ = 0; // NOTE: this member unused -- STR #3169 +#endif push_ = 0; tab_pos = 0; tab_width = 0; |
