Get rid of CppUnit boilerplate in wxLog unit test No real changes, just stop using CppUnit-compatible macros.
Make wxLogXXX(string) work correctly Don't interpret percent signs in the string as format specifiers if there are no parameters. This makes using wxLogWhatever(s) safe with arbitrary string "s" safe: previously, if it contained any "%s" inside it, this could crash, but now it just logs literal "%s".
Remove unnecessary use of wxLogXXX("%s") Just pass the strings directly to wxLogXXX functions as this works correctly after the changes of the parent commit.
Update Corsican translation for 3.3.0 Closes #25420.
Update German translations
Ensure that all ports call wxEventLoop::OnExit() Make ScheduleExit() non-virtual and call a new virtual DoStop() from it and update all ports to override the new virtual function and not override ScheduleExit() itself to ensure that the base class version, which calls OnExit(), is used. Closes #25397. See #25409.
Merge branch 'safe-log-single-string' Make it safe to log a single string directly. See #25414.
Fix calling wxTextCtrl::GTKSetPangoMarkup() with GTK < 3.16 Just return false from this function instead of crashing due to gtk_text_buffer_insert_markup() not being available in older GTK libraries. See #24912. Closes #25416, #25419. Co-authored-by: Vadim Zeitlin <va...@wxwidgets.org>
Improve wxControl description and document wxScrolled<wxControl> Explain the difference between wxControl and wxWindow and also mention the existence of wxScrolled<wxControl> which is used as a base class elsewhere. Closes #25415. Closes #25421.
—
View it on GitLab.
You're receiving this email because of your account on gitlab.com. Manage all notifications · Help