From 30a324b800dfda7bb78ab5b3e21be86d8d3dcd89 Mon Sep 17 00:00:00 2001 From: Georg Zotti Date: Mon, 30 Oct 2023 01:36:04 +0100 Subject: [PATCH] Catch all single-expression add-ons --- src/core/StelObject.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/StelObject.cpp b/src/core/StelObject.cpp index 07c7e453be37e..5f3da559fbb6e 100644 --- a/src/core/StelObject.cpp +++ b/src/core/StelObject.cpp @@ -966,8 +966,8 @@ void StelObject::postProcessInfoString(QString& str, const InfoStringGroup& flag { static const QRegularExpression brRe2("\\s*"); static const QRegularExpression tdRe1(""); - static const QRegularExpression tdRe2(""); - static const QRegularExpression tdRe3(""); + static const QRegularExpression tdRe2(""); // Seen: style, align, colspan, rowspan. Always only one expression. + static const QRegularExpression tdRe3(""); static const QRegularExpression tableRe2(""); static const QRegularExpression tableRe3(""); static const QRegularExpression tableRe4("
");