summaryrefslogtreecommitdiff
path: root/FL
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2021-01-07 15:46:19 +0100
committerAlbrecht Schlosser <albrechts.fltk@online.de>2022-11-06 16:40:17 +0100
commitf904f4c4eca104cfb57ae6b904515ecf91dc4db2 (patch)
tree353005511337be9b2bf822ca9af221282e05f50b /FL
parentbb7129dae2be48affa0a19292122e5ce988c0719 (diff)
Fix Fl_Help_View <OL> numbers (Issue #153, STR 3290)
Started with @wcout's patch (see Issue #153, STR 3290), modified patch for CMP conformance, restructured methods, and finally: - used Fl_Int_Vector instead of 'fl_data_container' - removed fl_data_container Thanks for the working patch to @wcout.
Diffstat (limited to 'FL')
-rw-r--r--FL/Fl_Help_View.H3
1 files changed, 3 insertions, 0 deletions
diff --git a/FL/Fl_Help_View.H b/FL/Fl_Help_View.H
index 32e993aec..9b3a1a242 100644
--- a/FL/Fl_Help_View.H
+++ b/FL/Fl_Help_View.H
@@ -3,6 +3,7 @@
//
// Copyright 1997-2010 by Easy Software Products.
// Image support by Matthias Melcher, Copyright 2000-2009.
+// Copyright 2011-2022 by Bill Spitzak and others.
//
// This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this
@@ -52,6 +53,8 @@ struct Fl_Help_Block {
w, // Width
h; // Height
int line[32]; // Left starting position for each line
+ int ol; // is ordered list <OL> element
+ int ol_num; // item number in ordered list
};
//