diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2025-07-07 13:51:36 +0200 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2025-07-07 14:55:55 +0200 |
| commit | bdde3e5d2bd6df79557e219f3b5f148aa0914390 (patch) | |
| tree | 910d00a8257c8b8a3f4a3916547328c68a72661b /src/Fl_Table.cxx | |
| parent | 51cca24d04768dc73a8d0317db757a0ed7f69eaf (diff) | |
Fl_Table_Row: replace private class CharVector with std::vector
FL/Fl_Table_Row.H: use `std::vector<uint8_t> _rowselect;`,
remove declaration of class `CharVector`
src/Fl_Table_Row.cxx: remove implementation of class `CharVector`,
simplify loops (use range based for loops),
use resize() to change vector size.
Unify copyright year of Fl_Table* headers and implementation.
Diffstat (limited to 'src/Fl_Table.cxx')
| -rw-r--r-- | src/Fl_Table.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Fl_Table.cxx b/src/Fl_Table.cxx index d970659a0..b7fb817c4 100644 --- a/src/Fl_Table.cxx +++ b/src/Fl_Table.cxx @@ -3,7 +3,7 @@ // // Copyright 2002 by Greg Ercolano. // Copyright (c) 2004 O'ksi'D -// Copyright 2023-2025 by Bill Spitzak and others. +// Copyright 2009-2025 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 |
