fix(stable): wx 3.3.2 String-Konkatenation in AboutDialog (wxUniCharRef)

This commit is contained in:
viewit
2026-06-10 23:35:04 +02:00
parent e45710023d
commit 2b91bda35b

View File

@@ -294,7 +294,10 @@ AboutDialog::AboutDialog()
find_txt += text_list[i][o];
count_txt += text_list[i][o];
} else {
find_txt += std::string("\n") + text_list[i][o];
// wxString::operator[] yields wxUniCharRef in wx 3.3.2, which has no
// operator+ with std::string — append in two steps (matches dev branch).
find_txt += "\n";
find_txt += text_list[i][o];
count_txt = text_list[i][o];
}
}