From 48819e0e5d9c02d0e4441492a8b1d833274ef10c Mon Sep 17 00:00:00 2001 From: Laurent Pugin Date: Sun, 1 Oct 2023 11:34:47 +0200 Subject: [PATCH] Fix wrong attribute class registration for ending Closes #3496 --- src/ending.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ending.cpp b/src/ending.cpp index b98534f944c..48745b32a28 100644 --- a/src/ending.cpp +++ b/src/ending.cpp @@ -40,7 +40,7 @@ Ending::Ending() this->RegisterAttClass(ATT_LABELLED); this->RegisterAttClass(ATT_LINEREND); this->RegisterAttClass(ATT_LINERENDBASE); - this->RegisterAttClass(ATT_NINTEGER); + this->RegisterAttClass(ATT_NNUMBERLIKE); this->Reset(); }