mirror of
https://github.com/wxWidgets/wxWidgets.git
synced 2026-08-17 17:02:51 +08:00
The old class used incorrect const qualifiers on its member functions: saving function typically modifies the object being saved into, and so must not be const, while loading function should be const, but the old class reversed this. Do it right this time in the new GeometryStore class and keep the old class for compatibility only. See #26602.