summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2021-12-17 19:37:48 +0100
committerAlbrecht Schlosser <albrechts.fltk@online.de>2021-12-17 19:37:48 +0100
commit55e5c74e9e6a31bc6b75b479546ff4e84b1c935a (patch)
tree745c43a90c6cc07d0f99facb60cbdce36c93b84c
parent311d9a8ad427d0fb6c23fb8752620883e210d2b2 (diff)
Fix broken build
sorry for the noise
-rw-r--r--src/forms_compatibility.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/forms_compatibility.cxx b/src/forms_compatibility.cxx
index 2d9ca858f..c4901fedc 100644
--- a/src/forms_compatibility.cxx
+++ b/src/forms_compatibility.cxx
@@ -27,7 +27,7 @@ void fl_end_form() {
void Fl_Group::forms_end() {
// set the dimensions of a group to surround contents
- const int nc = g->children();
+ const int nc = children();
if (nc && !w()) {
Fl_Widget*const* a = array();
Fl_Widget* o = *a++;