Fixed a compiler warning

This commit is contained in:
Matthias Koefferlein 2025-03-22 20:47:28 +01:00
parent 6f69efd427
commit a727ed0b1d
1 changed files with 1 additions and 1 deletions

View File

@ -462,7 +462,7 @@ DeepTexts::apply_filter (const TextFilterBase &filter, bool with_true, bool with
for (db::Shapes::shape_iterator si = s.begin (db::ShapeIterator::Texts); ! si.at_end (); ++si) {
db::Text text;
si->text (text);
if (filter.selected (text.transformed (*v), si->prop_id ())) {
if (filter.selected (text.transformed (tr), si->prop_id ())) {
if (st_true) {
st_true->insert (*si);
}